Skip to content

Instantly share code, notes, and snippets.

@coco98
Created December 12, 2018 14:57
Show Gist options
  • Save coco98/e4a9d94ef91c6b1dc9dfcf8dbbe94666 to your computer and use it in GitHub Desktop.
Save coco98/e4a9d94ef91c6b1dc9dfcf8dbbe94666 to your computer and use it in GitHub Desktop.
#Query running against data the DB
query {
albums {
id
title
}
}
#Query running against your own code that may or may not talk to the database
#These APIs are hosted at: https://graphql-pokemon.now.sh
query {
pokemons(first:10) {
name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment