From ba7db21641db55955ffd3c9d9a69e4f603873707 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 6 Nov 2025 12:35:51 -0800 Subject: [PATCH] update notif operations --- src/index.tsx | 6 ++++++ src/operations/video.gql | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 8a1602f..6e02d8c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5213,6 +5213,9 @@ export type GetVideoSocialDetailsByIdQuery = { __typename?: "VideoGQL"; id: number; name?: string | null; + screenshotUri?: string | null; + makePercentage: number; + totalShots: number; owner?: { __typename?: "UserGQL"; id: number; @@ -10259,6 +10262,9 @@ export const GetVideoSocialDetailsByIdDocument = gql` getVideo(videoId: $videoId) { id name + screenshotUri + makePercentage + totalShots owner { id firebaseUid diff --git a/src/operations/video.gql b/src/operations/video.gql index f76405f..5675745 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -97,6 +97,9 @@ query GetVideoSocialDetailsById($videoId: Int!) { getVideo(videoId: $videoId) { id name + screenshotUri + makePercentage + totalShots owner { id firebaseUid