Skip to content

Instantly share code, notes, and snippets.

@smorcuend
Forked from katopz/gql_search_stargazers.gql
Created November 7, 2017 19:43
Show Gist options
  • Save smorcuend/a58f74ede44805c91a920f7dcc2f112c to your computer and use it in GitHub Desktop.
Save smorcuend/a58f74ede44805c91a920f7dcc2f112c to your computer and use it in GitHub Desktop.
GraphQL Github Example : Search for top ten stargazers
// Try at : https://graphql-explorer.githubapp.com/
{
search(query: "language:JavaScript stars:>10000", type: REPOSITORY, first: 10) {
repositoryCount
edges {
node {
... on Repository {
name
descriptionHTML
stargazers {
totalCount
}
forks {
totalCount
}
updatedAt
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment