Skip to content

Instantly share code, notes, and snippets.

@rajikaimal
Created December 19, 2015 14:01
Show Gist options
  • Select an option

  • Save rajikaimal/2e19d84ed5a37b4e2f2a to your computer and use it in GitHub Desktop.

Select an option

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