Skip to content

Instantly share code, notes, and snippets.

@rajikaimal
Created December 18, 2015 19:13
Show Gist options
  • Select an option

  • Save rajikaimal/5739296f872325ab062f to your computer and use it in GitHub Desktop.

Select an option

Save rajikaimal/5739296f872325ab062f to your computer and use it in GitHub Desktop.
Query keyword in GraphQL
query UserInfo {
"data": {
"users": [
{"_id": 1,
"name": "Rajika",
"age": 20,
"birthday": {
"data": 22,
"month": 06,
"year": 1994
}
},
{"_id": 1,
"name": "Tiffany",
"age": 25,
"birthday": {
"data": 01,
"month": 08,
"year": 1989
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment