Skip to content

Instantly share code, notes, and snippets.

@gottfrois
Last active April 13, 2020 09:41
Show Gist options
  • Save gottfrois/6a5bc095e31ae5b5aced4d5a6a6b97a8 to your computer and use it in GitHub Desktop.
Save gottfrois/6a5bc095e31ae5b5aced4d5a6a6b97a8 to your computer and use it in GitHub Desktop.
Code snippet in Stream Paginated GraphQL API in Elixir medium blog post
query {
records(first: 100) {
pageInfo {
hasNextPage
endCursor
}
edges {
node {
id
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment