Files
metrics/source/plugins/achievements/queries/ranking.graphql
2021-04-08 20:13:47 +02:00

14 lines
407 B
GraphQL

query AchievementsRanking {
repo_rank:search(query: "stars:>$stars", type: REPOSITORY, first: 0) {
repositoryCount
}
user_rank:search(query: "followers:>$followers", type: USER, first: 0) {
userCount
}
forks_rank:search(query: "forks:>$forks", type: REPOSITORY, first: 0) {
repositoryCount
}
created_rank:search(query: "repos:>$created", type: USER, first: 0) {
userCount
}
}