Skip to content

Instantly share code, notes, and snippets.

@rafaelvicio
Last active August 24, 2017 16:21
Show Gist options
  • Save rafaelvicio/fad90da0ad6c3e3fae7e0a9d5e819d6c to your computer and use it in GitHub Desktop.
Save rafaelvicio/fad90da0ad6c3e3fae7e0a9d5e819d6c to your computer and use it in GitHub Desktop.
Query GraphQL
Query:
{ usuario {
nome,
idade,
}
}
Retorno:
{ "usuario" {
"nome": "Rafael",
"idade": 21
},
{
"nome": "Maria",
"idade": 19
},
{
"nome": "Filype",
"idade": 17
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment