Created
September 15, 2016 15:23
-
-
Save ikwattro/c9ecf380c6be04052043115ec77fadf5 to your computer and use it in GitHub Desktop.
graphql github
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
| # Type queries into this side of the screen, and you will | |
| # see intelligent typeaheads aware of the current GraphQL type schema, | |
| # live syntax, and validation errors highlighted within the text. | |
| # We'll get you started with a simple query showing your username! | |
| query { | |
| repositoryOwner(login: "neo4j") { | |
| repository(name: "neo4j") { | |
| stargazers(first:3, after:"ODk5NDA3") { | |
| totalCount | |
| edges { | |
| cursor | |
| starredAt | |
| node { | |
| id | |
| login | |
| location | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment