Last active
December 9, 2016 02:58
-
-
Save thebigredgeek/3c7bc342bc4410bd045773d405d390d2 to your computer and use it in GitHub Desktop.
GraphQL query demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myUser { | |
# My user's ID | |
id | |
name | |
createdAt | |
updatedAt | |
Posts { | |
# Posts that my user has created... | |
id | |
text | |
Image { | |
# Image attached to each post | |
id | |
url | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment