diff --git a/src/index.tsx b/src/index.tsx index 4ba6de3..796f3a8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1795,6 +1795,17 @@ export type GetShotsQuery = { createdAt?: any | null; updatedAt?: any | null; user?: { __typename?: "UserGQL"; id: number } | null; + video?: { + __typename?: "VideoGQL"; + stream?: { + __typename?: "UploadStreamGQL"; + resolution: { + __typename?: "VideoResolutionGQL"; + width?: number | null; + height?: number | null; + }; + } | null; + } | null; cueObjectFeatures?: { __typename?: "CueObjectFeaturesGQL"; cueObjectDistance?: number | null; @@ -2721,6 +2732,14 @@ export const GetShotsDocument = gql` id } falsePositiveScore + video { + stream { + resolution { + width + height + } + } + } createdAt @include(if: $includeCreatedAt) updatedAt @include(if: $includeUpdatedAt) cueObjectFeatures @include(if: $includeCueObjectFeatures) { diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 5c486f9..fc8f652 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -27,6 +27,14 @@ query GetShots( id } falsePositiveScore + video { + stream { + resolution { + width + height + } + } + } createdAt @include(if: $includeCreatedAt) updatedAt @include(if: $includeUpdatedAt) cueObjectFeatures @include(if: $includeCueObjectFeatures) {