Skip to content

Instantly share code, notes, and snippets.

@rajikaimal
Created December 19, 2015 15:06
Show Gist options
  • Select an option

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

Select an option

Save rajikaimal/f4cd0c70a883a04a287c to your computer and use it in GitHub Desktop.
Variables in GraphQL
query UserDetails($userId: int){
users(_id: $userId) {
_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