2024-03-12 19:47:10 -06:00
|
|
|
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
|
|
|
getProfileImageUploadLink(fileExt: $fileExt) {
|
|
|
|
uploadUrl
|
|
|
|
headers {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation editProfileImageUri($profileImageUri: String!) {
|
|
|
|
editProfileImageUri(profileImageUri: $profileImageUri) {
|
|
|
|
id
|
|
|
|
firebaseUid
|
|
|
|
username
|
|
|
|
profileImageUri
|
|
|
|
createdAt
|
|
|
|
updatedAt
|
|
|
|
}
|
|
|
|
}
|
2024-03-22 12:45:58 -06:00
|
|
|
|
|
|
|
query getLoggedInUser {
|
|
|
|
getLoggedInUser {
|
|
|
|
id
|
|
|
|
firebaseUid
|
|
|
|
username
|
|
|
|
profileImageUri
|
2024-04-25 17:32:52 -06:00
|
|
|
activeVideoId
|
2024-03-22 12:45:58 -06:00
|
|
|
createdAt
|
|
|
|
updatedAt
|
|
|
|
}
|
|
|
|
}
|
2024-03-27 19:48:04 -06:00
|
|
|
|
|
|
|
query GetUserPlayTime($userId: Int!) {
|
|
|
|
getPlayTime(userId: $userId) {
|
|
|
|
totalSeconds
|
|
|
|
}
|
|
|
|
}
|