21 lines
383 B
Plaintext
21 lines
383 B
Plaintext
|
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
|
||
|
}
|
||
|
}
|