12 lines
281 B
GraphQL
12 lines
281 B
GraphQL
query AchievementsTotal {
|
|
issues:search(query: "created:>1970", type: ISSUE) {
|
|
count:issueCount
|
|
}
|
|
repositories:search(query: "created:>1970", type: REPOSITORY) {
|
|
count:repositoryCount
|
|
}
|
|
users:search(query: "created:>1970", type: USER) {
|
|
count:userCount
|
|
}
|
|
}
|