Last active
December 19, 2015 16:43
-
-
Save rajikaimal/54cb690787461f921235 to your computer and use it in GitHub Desktop.
Fragments in GraphQL
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
| { | |
| users { | |
| ...RepFields | |
| followers { | |
| ...RepFields | |
| }, | |
| birthday { | |
| date, | |
| month, | |
| year | |
| } | |
| } | |
| } | |
| fragment RepFields on User { | |
| _id, | |
| name, | |
| age | |
| } |
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
| { | |
| users { | |
| _id, | |
| name, | |
| age, | |
| followers { | |
| _id, | |
| name, | |
| age | |
| }, | |
| birthday { | |
| date, | |
| month, | |
| year | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment