Remove deprecated statistics interface; add getLoggedInUser op.

This commit is contained in:
Mike Kalange
2024-03-22 12:45:58 -06:00
parent abfaf06f1a
commit 7889476bc9
3 changed files with 103 additions and 28 deletions

View File

@@ -18,3 +18,14 @@ mutation editProfileImageUri($profileImageUri: String!) {
updatedAt
}
}
query getLoggedInUser {
getLoggedInUser {
id
firebaseUid
username
profileImageUri
createdAt
updatedAt
}
}