Request isAdmin in getLoggedInUser

This commit is contained in:
Ivan Malison 2024-07-13 17:47:41 -06:00
parent cc36a8b51d
commit 03c1d08d8c
2 changed files with 3 additions and 0 deletions

View File

@ -1360,6 +1360,7 @@ export type GetLoggedInUserQuery = {
id: number;
firebaseUid: string;
username: string;
isAdmin: boolean;
profileImageUri?: string | null;
activeVideoId?: number | null;
createdAt?: any | null;
@ -2243,6 +2244,7 @@ export const GetLoggedInUserDocument = gql`
id
firebaseUid
username
isAdmin
profileImageUri
activeVideoId
createdAt

View File

@ -24,6 +24,7 @@ query getLoggedInUser {
id
firebaseUid
username
isAdmin
profileImageUri
activeVideoId
createdAt