Skip to content

Instantly share code, notes, and snippets.

@i001962
Forked from katopz/gql_search_stargazers.gql
Created April 28, 2020 01:47
Show Gist options
  • Select an option

  • Save i001962/f45ad02361a0a9115d77ffed6f51fcec to your computer and use it in GitHub Desktop.

Select an option

Save i001962/f45ad02361a0a9115d77ffed6f51fcec 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