Skip to content

Instantly share code, notes, and snippets.

@ikwattro
Created September 15, 2016 15:23
Show Gist options
  • Select an option

  • Save ikwattro/c9ecf380c6be04052043115ec77fadf5 to your computer and use it in GitHub Desktop.

Select an option

Save ikwattro/c9ecf380c6be04052043115ec77fadf5 to your computer and use it in GitHub Desktop.
graphql github
# 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