Created
January 22, 2021 11:01
-
-
Save Krzysztof-Cieslak/6d3e1693de4afee7d63dc6d80c504903 to your computer and use it in GitHub Desktop.
GraphQL query to find number of "active" repositories in programming language. Can be run on https://docs.github.com/en/graphql/overview/explorer
This file contains 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
{ | |
search(query: "language:F# stars:>10 pushed:>=2020-01-01", type: REPOSITORY, first: 100) { | |
repositoryCount | |
edges { | |
node { | |
... on Repository { | |
nameWithOwner | |
stargazers { | |
totalCount | |
} | |
pushedAt | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment