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
| { | |
| "data": { | |
| "users": [ | |
| {"_id": 1, | |
| "name": "Rajika", | |
| "age": 20 | |
| }, | |
| {"_id": 1, | |
| "name": "Tiffany", | |
| "age": 25 |
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, | |
| 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
| { | |
| "data": { | |
| "users": [ | |
| {"_id": 1, | |
| "name": "Rajika", | |
| "age": 20, | |
| "birthday": { | |
| "data": 22, | |
| "month": 06, | |
| "year": 1994 |
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
| query UserInfo { | |
| "data": { | |
| "users": [ | |
| {"_id": 1, | |
| "name": "Rajika", | |
| "age": 20, | |
| "birthday": { | |
| "data": 22, | |
| "month": 06, | |
| "year": 1994 |
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) { | |
| _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(_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 { | |
| _id, | |
| firstname: 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 { | |
| ...RepFields | |
| followers { | |
| ...RepFields | |
| }, | |
| 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
| query UserDetails($userId: int){ | |
| users(_id: $userId) { | |
| _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
| query ExampleQuery(presents: Boolean) { | |
| ExampleRootQueryField { | |
| ...ConditionalFragment @include(if: presents) | |
| } | |
| } | |
| fragment ConditionalFragment on ExampleType { | |
| _id, | |
| firstname, | |
| speciality |