fix(plugin/achievements): use graphql first for initial setup and fix regex (#1532)

This commit is contained in:
Simon Lecoq
2023-09-12 04:23:48 +02:00
committed by GitHub
parent d4d0137ac0
commit 2e12f12147
3 changed files with 60 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
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
}
}