Constructs a new type from T by picking K from the node type in the Relay connection type T.
T
K
type User = { id: string; name: string;}type UserConnection = RelayConnection<User>;RelayConnectionPick<UserConnection, "id">; // RelayConnection<Pick<User, "id">> Copy
type User = { id: string; name: string;}type UserConnection = RelayConnection<User>;RelayConnectionPick<UserConnection, "id">; // RelayConnection<Pick<User, "id">>
Constructs a new type from
Tby pickingKfrom the node type in the Relay connection typeT.Example