Request isAdmin in getLoggedInUser
This commit is contained in:
parent
cc36a8b51d
commit
03c1d08d8c
@ -1360,6 +1360,7 @@ export type GetLoggedInUserQuery = {
|
|||||||
id: number;
|
id: number;
|
||||||
firebaseUid: string;
|
firebaseUid: string;
|
||||||
username: string;
|
username: string;
|
||||||
|
isAdmin: boolean;
|
||||||
profileImageUri?: string | null;
|
profileImageUri?: string | null;
|
||||||
activeVideoId?: number | null;
|
activeVideoId?: number | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
@ -2243,6 +2244,7 @@ export const GetLoggedInUserDocument = gql`
|
|||||||
id
|
id
|
||||||
firebaseUid
|
firebaseUid
|
||||||
username
|
username
|
||||||
|
isAdmin
|
||||||
profileImageUri
|
profileImageUri
|
||||||
activeVideoId
|
activeVideoId
|
||||||
createdAt
|
createdAt
|
||||||
|
@ -24,6 +24,7 @@ query getLoggedInUser {
|
|||||||
id
|
id
|
||||||
firebaseUid
|
firebaseUid
|
||||||
username
|
username
|
||||||
|
isAdmin
|
||||||
profileImageUri
|
profileImageUri
|
||||||
activeVideoId
|
activeVideoId
|
||||||
createdAt
|
createdAt
|
||||||
|
Loading…
Reference in New Issue
Block a user