Skip to content

Instantly share code, notes, and snippets.

@gottfrois
Created April 13, 2020 10:04
Show Gist options
  • Save gottfrois/8a9b1d592279f90002675cbd1546acac to your computer and use it in GitHub Desktop.
Save gottfrois/8a9b1d592279f90002675cbd1546acac to your computer and use it in GitHub Desktop.
Code snippet in Stream Paginated GraphQL API in Elixir medium blog post
"""
query ListRecords($first: Int){
records(first: $first) {
edges {
node {
id
}
}
}
}
"""
|> MyApp.StreamPaginator.stream(%{first: 100})
|> Enum.into([])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment