Last active
June 28, 2021 16:36
-
-
Save i001962/2f90fe005f10c9a26f795c6ab08208c9 to your computer and use it in GitHub Desktop.
github Graphql API - search for top 100 gundb repos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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