Resolve comments

This commit is contained in:
Dean 2024-03-27 18:48:04 -07:00
parent 97d4f2cbe9
commit 9bd0e237ea
2 changed files with 6 additions and 5 deletions

View File

@ -29,3 +29,9 @@ query getLoggedInUser {
updatedAt updatedAt
} }
} }
query GetUserPlayTime($userId: Int!) {
getPlayTime(userId: $userId) {
totalSeconds
}
}

View File

@ -1,5 +0,0 @@
query GetUserPlayTime($userId: Int!) {
getPlayTime(userId: $userId) {
totalSeconds
}
}