Add serializedShotPaths to GetShots #55

Merged
loewy merged 2 commits from loewy/add-shot-deserialization-to-operation into master 2024-09-16 17:56:24 -06:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit a33601158f - Show all commits

View File

@ -1841,6 +1841,10 @@ export type GetShotsQuery = {
}; };
} | null; } | null;
} | null; } | null;
serializedShotPaths?: {
__typename?: "SerializedShotPathsGQL";
b64EncodedBuffer?: string | null;
} | null;
cueObjectFeatures?: { cueObjectFeatures?: {
__typename?: "CueObjectFeaturesGQL"; __typename?: "CueObjectFeaturesGQL";
cueObjectDistance?: number | null; cueObjectDistance?: number | null;
@ -2873,6 +2877,9 @@ export const GetShotsDocument = gql`
} }
} }
} }
serializedShotPaths {
b64EncodedBuffer
}
createdAt @include(if: $includeCreatedAt) createdAt @include(if: $includeCreatedAt)
updatedAt @include(if: $includeUpdatedAt) updatedAt @include(if: $includeUpdatedAt)
cueObjectFeatures @include(if: $includeCueObjectFeatures) { cueObjectFeatures @include(if: $includeCueObjectFeatures) {

View File

@ -36,6 +36,9 @@ query GetShots(
} }
} }
} }
serializedShotPaths {
b64EncodedBuffer
}
createdAt @include(if: $includeCreatedAt) createdAt @include(if: $includeCreatedAt)
updatedAt @include(if: $includeUpdatedAt) updatedAt @include(if: $includeUpdatedAt)
cueObjectFeatures @include(if: $includeCueObjectFeatures) { cueObjectFeatures @include(if: $includeCueObjectFeatures) {