leaderboards operation
All checks were successful
Tests / Tests (pull_request) Successful in 9s

This commit is contained in:
2024-12-20 13:13:30 -08:00
parent 3f2e5d331f
commit 145c2f9558
2 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
query GetMakesLeaderboard($interval: TimeInterval, $when: DateTime) {
getMakesLeaderboard(interval: $interval, when: $when) {
entries {
user {
id
username
profileImageUri
}
value
}
}
}