Skip to content

Instantly share code, notes, and snippets.

@tspecht
Created July 28, 2017 09:10
Show Gist options
  • Save tspecht/9292e0a2527ec3a5ccce082335998ac0 to your computer and use it in GitHub Desktop.
Save tspecht/9292e0a2527ec3a5ccce082335998ac0 to your computer and use it in GitHub Desktop.
Example of offset-based pagination in GraphQL
query Pokemons($trainerID: Int!, $offset: Int, $limit: Int) {
pokemons(trainerID: $trainerID, offset: $offset, limit: $limit) {
id
name
species {
name
}
# ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment