Compare commits

..

No commits in common. "c0ee55069e680da12b172e2cabdeffbc191b0b2a" and "dcdb324391b31a0cddbcc444c3a25c8497f3bb24" have entirely different histories.

2 changed files with 11 additions and 27 deletions

View File

@ -2343,6 +2343,10 @@ export type GetShotsWithMetadataQuery = {
}; };
} | null; } | null;
} | null; } | null;
serializedShotPaths?: {
__typename?: "SerializedShotPathsGQL";
b64EncodedBuffer?: string | null;
} | null;
cueObjectFeatures?: { cueObjectFeatures?: {
__typename?: "CueObjectFeaturesGQL"; __typename?: "CueObjectFeaturesGQL";
cueObjectDistance?: number | null; cueObjectDistance?: number | null;
@ -2357,16 +2361,6 @@ export type GetShotsWithMetadataQuery = {
make?: boolean | null; make?: boolean | null;
intendedPocketType?: PocketEnum | null; intendedPocketType?: PocketEnum | null;
} | null; } | null;
pocketingIntentionInfo?: {
__typename?: "PocketingIntentionInfoGQL";
ballId: number;
pocketId: PocketIdentifier;
pathMetadataIndex: number;
} | null;
serializedShotPaths?: {
__typename?: "SerializedShotPathsGQL";
b64EncodedBuffer?: string | null;
} | null;
}>; }>;
}; };
}; };
@ -3578,6 +3572,9 @@ export const GetShotsWithMetadataDocument = 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) {
@ -3593,15 +3590,6 @@ export const GetShotsWithMetadataDocument = gql`
make @include(if: $includeMake) make @include(if: $includeMake)
intendedPocketType @include(if: $includeIntendedPocketType) intendedPocketType @include(if: $includeIntendedPocketType)
} }
pocketingIntentionInfo
@include(if: $includePocketingIntentionFeatures) {
ballId
pocketId
pathMetadataIndex
}
serializedShotPaths @include(if: $includePocketingIntentionFeatures) {
b64EncodedBuffer
}
} }
} }
} }

View File

@ -113,6 +113,10 @@ query GetShotsWithMetadata(
} }
} }
} }
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) {
@ -128,14 +132,6 @@ query GetShotsWithMetadata(
make @include(if: $includeMake) make @include(if: $includeMake)
intendedPocketType @include(if: $includeIntendedPocketType) intendedPocketType @include(if: $includeIntendedPocketType)
} }
pocketingIntentionInfo @include(if: $includePocketingIntentionFeatures) {
ballId
pocketId
pathMetadataIndex
}
serializedShotPaths @include(if: $includePocketingIntentionFeatures) {
b64EncodedBuffer
}
} }
} }
} }