From 1e53dc21eeaab1378925ba94f087a09aa23b2aed Mon Sep 17 00:00:00 2001 From: Loewy Date: Mon, 28 Oct 2024 15:59:06 -0700 Subject: [PATCH] add fargoRating in user operations --- src/index.tsx | 2 ++ src/operations/user.gql | 1 + 2 files changed, 3 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 0261cc4..fa9e3f2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3114,6 +3114,7 @@ export type GetLoggedInUserQuery = { username: string; isAdmin?: boolean | null; profileImageUri?: string | null; + fargoRating?: number | null; activeVideoId?: number | null; createdAt?: any | null; updatedAt?: any | null; @@ -4930,6 +4931,7 @@ export const GetLoggedInUserDocument = gql` username isAdmin profileImageUri + fargoRating activeVideoId createdAt updatedAt diff --git a/src/operations/user.gql b/src/operations/user.gql index 524f22b..1a19ba6 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -37,6 +37,7 @@ query getLoggedInUser { username isAdmin profileImageUri + fargoRating activeVideoId createdAt updatedAt -- 2.46.1