Skip to content

Instantly share code, notes, and snippets.

@mikesname
Last active November 1, 2016 16:15
Show Gist options
  • Save mikesname/d8abd5bb4f7d775adfc2e33ec123f35f to your computer and use it in GitHub Desktop.
Save mikesname/d8abd5bb4f7d775adfc2e33ec123f35f to your computer and use it in GitHub Desktop.
GraphQL query for retrieving repository id and names from the EHRI GraphQL API
query exampleQuery($cursor: Cursor) {
repositories(after: $cursor) {
items {
id
description {
name
}
}
pageInfo {
nextPage
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment