Skip to content

Instantly share code, notes, and snippets.

@ldiebold
Created August 17, 2018 03:42
Show Gist options
  • Save ldiebold/fa2b0ce3fd144142719a1bc2789757e3 to your computer and use it in GitHub Desktop.
Save ldiebold/fa2b0ce3fd144142719a1bc2789757e3 to your computer and use it in GitHub Desktop.
basic graphql query
// query
{
hero {
name
}
}
// result
{
"data": {
"hero": {
"name": "R2-D2"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment