- 
                Notifications
    
You must be signed in to change notification settings  - Fork 28
 
Open
Labels
Description
- Client fields currently are scalars, in the sense that you cannot use 
{}, as inmy_client_field { ... }. - Client fields should be able to return IDs, in which case, you would be able to do 
best_friend_client_field { name } - This needs additional thought:
- How do we enable lazy fetching? As in, we calculate 
best_friend_client_field, and then execute the operationnode(id: $bestFriendId) { ... on User { name } } - Do we want to force the user to opt into this? (As in the 
@waterfalldirective in Relay?) 
 - How do we enable lazy fetching? As in, we calculate 
 - The syntax I'm thinking of is 
pointer Type.fieldName to Type { ... }