Skip to content

Instantly share code, notes, and snippets.

@Krzysztof-Cieslak
Created January 22, 2021 11:01
Show Gist options
  • Save Krzysztof-Cieslak/6d3e1693de4afee7d63dc6d80c504903 to your computer and use it in GitHub Desktop.
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
{
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