Skip to content

Instantly share code, notes, and snippets.

View gottfrois's full-sized avatar

Pierre-Louis Gottfrois gottfrois

View GitHub Profile
@gottfrois
gottfrois / iex.ex
Created April 13, 2020 10:04
Code snippet in Stream Paginated GraphQL API in Elixir medium blog post
"""
query ListRecords($first: Int){
records(first: $first) {
edges {
node {
id
}
}
}
}