Last active
November 1, 2016 16:15
-
-
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
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
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