Created
December 12, 2018 14:57
-
-
Save coco98/e4a9d94ef91c6b1dc9dfcf8dbbe94666 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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