Skip to content

Instantly share code, notes, and snippets.

@AndrewRayCode
Last active August 24, 2018 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewRayCode/7615073263b468c46b945e8cd4a01be4 to your computer and use it in GitHub Desktop.
Save AndrewRayCode/7615073263b468c46b945e8cd4a01be4 to your computer and use it in GitHub Desktop.
query UserWithAvatarWithoutFriend {
user(id: '1') {
name
avatarImage
}
}
query UserWithoutAvatar {
user(id: '1') {
name
}
}
query UserWithAvatarWithFriend {
user(id: '1') {
name
friend
avatarImage
}
}
query UserWithoutAvatarWithFriend {
user(id: '1') {
name
friend
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment