Add getUsernames operation

This commit is contained in:
2024-07-14 00:16:02 -06:00
parent 235f4a58e9
commit d669dba320
2 changed files with 96 additions and 0 deletions

View File

@@ -37,3 +37,11 @@ query GetUserPlayTime($userId: Int!) {
totalSeconds
}
}
query getUsernames(
$matchString: String!
$limit: Int = null
$after: String = null
) {
getUsernames(matchString: $matchString, limit: $limit, after: $after)
}