Skip to content

Instantly share code, notes, and snippets.

@gottfrois
Created April 13, 2020 09:56
Show Gist options
  • Save gottfrois/d7e407eb463d461ec4ffe4694a62bb21 to your computer and use it in GitHub Desktop.
Save gottfrois/d7e407eb463d461ec4ffe4694a62bb21 to your computer and use it in GitHub Desktop.
Code snippet in Stream Paginated GraphQL API in Elixir medium blog post
defp next({nil, _query, _args} = acc), do: {:halt, acc}
defp next({%{"hasNextPage" => false}, _query, _args} = acc), do: {:halt, acc}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment