From 0d0438b95bc5ad327a378fae1c36146d26a2b974 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 7 Nov 2024 22:39:06 -0800 Subject: [PATCH] include video gql fragment --- src/index.tsx | 10 +++++++--- src/operations/feed.gql | 4 +++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 1da0e32..0d37055 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2802,7 +2802,6 @@ export type VideoCardFieldsFragment = { __typename?: "VideoGQL"; id: number; name?: string | null; - screenshotUri?: string | null; totalShotsMade: number; totalShots: number; makePercentage: number; @@ -2811,6 +2810,7 @@ export type VideoCardFieldsFragment = { startTime?: any | null; endTime?: any | null; elapsedTime?: number | null; + screenshotUri?: string | null; tableSize: number; owner?: { __typename?: "UserGQL"; @@ -2838,6 +2838,7 @@ export type VideoCardFieldsFragment = { status: ProcessingStatusEnum; }>; } | null; + shots: Array<{ __typename?: "ShotGQL"; id: number }>; }; export type GetVideoFeedQueryVariables = Exact<{ @@ -2854,7 +2855,6 @@ export type GetVideoFeedQuery = { __typename?: "VideoGQL"; id: number; name?: string | null; - screenshotUri?: string | null; totalShotsMade: number; totalShots: number; makePercentage: number; @@ -2863,6 +2863,7 @@ export type GetVideoFeedQuery = { startTime?: any | null; endTime?: any | null; elapsedTime?: number | null; + screenshotUri?: string | null; tableSize: number; owner?: { __typename?: "UserGQL"; @@ -2893,6 +2894,7 @@ export type GetVideoFeedQuery = { status: ProcessingStatusEnum; }>; } | null; + shots: Array<{ __typename?: "ShotGQL"; id: number }>; }>; pageInfo: { __typename?: "PageInfoGQL"; @@ -4112,7 +4114,6 @@ export const VideoCardFieldsFragmentDoc = gql` profileImageUri } name - screenshotUri totalShotsMade totalShots makePercentage @@ -4143,6 +4144,9 @@ export const VideoCardFieldsFragmentDoc = gql` status } } + shots { + id + } } `; export const ShotWithAllFeaturesFragmentDoc = gql` diff --git a/src/operations/feed.gql b/src/operations/feed.gql index c3dc5d8..995fe27 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -48,7 +48,6 @@ fragment VideoCardFields on VideoGQL { profileImageUri } name - screenshotUri totalShotsMade totalShots makePercentage @@ -79,6 +78,9 @@ fragment VideoCardFields on VideoGQL { status } } + shots { + id + } } query GetVideoFeed(