Skip to content

Instantly share code, notes, and snippets.

@i001962
Last active June 28, 2021 16:36
Show Gist options
  • Select an option

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

Select an option

Save i001962/2f90fe005f10c9a26f795c6ab08208c9 to your computer and use it in GitHub Desktop.
github Graphql API - search for top 100 gundb repos
// https://docs.github.com/en/graphql/overview/explorer
{
search(query: "gundb in:readme", type: REPOSITORY, first: 100) {
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