Skip to content

Instantly share code, notes, and snippets.

@danvk
Created February 9, 2020 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danvk/d85287de86709a3dacc17800b44eefc8 to your computer and use it in GitHub Desktop.
Save danvk/d85287de86709a3dacc17800b44eefc8 to your computer and use it in GitHub Desktop.
Getting a list of repos with starcount from GitHub
query {
search(query: "is:public stars:>15", type: REPOSITORY, first:100) {
repositoryCount
edges {
node {
... on Repository {
nameWithOwner
stargazers {
totalCount
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment