diff --git a/src/index.tsx b/src/index.tsx index 66e8615..2e0f93f 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5214,6 +5214,9 @@ export type GetVideoSocialDetailsByIdQuery = { __typename?: "VideoGQL"; id: number; name?: string | null; + screenshotUri?: string | null; + makePercentage: number; + totalShots: number; owner?: { __typename?: "UserGQL"; id: number; @@ -10260,6 +10263,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