14 lines
407 B
GraphQL
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
|
|
}
|
|
} |