Created
December 19, 2015 14:01
-
-
Save rajikaimal/2e19d84ed5a37b4e2f2a to your computer and use it in GitHub Desktop.
Argument order 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(_id: 250,name: 'Rajika') { | |
| _id, | |
| name, | |
| age, | |
| birthday { | |
| date, | |
| month, | |
| year | |
| } | |
| } | |
| } |
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(name: 'Rajika',_id: 250) { | |
| _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