diff --git a/src/index.tsx b/src/index.tsx index bc7a8b1..ff369c8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1841,6 +1841,10 @@ export type GetShotsQuery = { }; } | null; } | null; + serializedShotPaths?: { + __typename?: "SerializedShotPathsGQL"; + b64EncodedBuffer?: string | null; + } | null; cueObjectFeatures?: { __typename?: "CueObjectFeaturesGQL"; cueObjectDistance?: number | null; @@ -2873,6 +2877,9 @@ export const GetShotsDocument = gql` } } } + serializedShotPaths { + b64EncodedBuffer + } 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 56ff57d..c1ac722 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -36,6 +36,9 @@ query GetShots( } } } + serializedShotPaths { + b64EncodedBuffer + } createdAt @include(if: $includeCreatedAt) updatedAt @include(if: $includeUpdatedAt) cueObjectFeatures @include(if: $includeCueObjectFeatures) {