Created
April 13, 2020 09:56
-
-
Save gottfrois/d7e407eb463d461ec4ffe4694a62bb21 to your computer and use it in GitHub Desktop.
Code snippet in Stream Paginated GraphQL API in Elixir medium blog post
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
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