Add all targetPocketIntention features to shot retrieval
This commit is contained in:
parent
fd78ddf641
commit
1f018f954e
@ -2370,8 +2370,11 @@ export type GetShotsWithMetadataQuery = {
|
||||
} | null;
|
||||
pocketingIntentionFeatures?: {
|
||||
__typename?: "PocketingIntentionFeaturesGQL";
|
||||
targetPocketDistance?: number | null;
|
||||
make?: boolean | null;
|
||||
targetPocketDistance?: number | null;
|
||||
targetPocketAngle?: number | null;
|
||||
targetPocketAngleDirection?: ShotDirectionEnum | null;
|
||||
marginOfErrorInDegrees?: number | null;
|
||||
intendedPocketType?: PocketEnum | null;
|
||||
} | null;
|
||||
pocketingIntentionInfo?: {
|
||||
@ -2425,8 +2428,11 @@ export type GetShotsByIdsQuery = {
|
||||
} | null;
|
||||
pocketingIntentionFeatures?: {
|
||||
__typename?: "PocketingIntentionFeaturesGQL";
|
||||
targetPocketDistance?: number | null;
|
||||
make?: boolean | null;
|
||||
targetPocketDistance?: number | null;
|
||||
targetPocketAngle?: number | null;
|
||||
targetPocketAngleDirection?: ShotDirectionEnum | null;
|
||||
marginOfErrorInDegrees?: number | null;
|
||||
intendedPocketType?: PocketEnum | null;
|
||||
} | null;
|
||||
pocketingIntentionInfo?: {
|
||||
@ -2473,8 +2479,11 @@ export type ShotWithAllFeaturesFragment = {
|
||||
} | null;
|
||||
pocketingIntentionFeatures?: {
|
||||
__typename?: "PocketingIntentionFeaturesGQL";
|
||||
targetPocketDistance?: number | null;
|
||||
make?: boolean | null;
|
||||
targetPocketDistance?: number | null;
|
||||
targetPocketAngle?: number | null;
|
||||
targetPocketAngleDirection?: ShotDirectionEnum | null;
|
||||
marginOfErrorInDegrees?: number | null;
|
||||
intendedPocketType?: PocketEnum | null;
|
||||
} | null;
|
||||
pocketingIntentionInfo?: {
|
||||
@ -3060,8 +3069,11 @@ export const ShotWithAllFeaturesFragmentDoc = gql`
|
||||
spinType
|
||||
}
|
||||
pocketingIntentionFeatures {
|
||||
targetPocketDistance
|
||||
make
|
||||
targetPocketDistance
|
||||
targetPocketAngle
|
||||
targetPocketAngleDirection
|
||||
marginOfErrorInDegrees
|
||||
intendedPocketType
|
||||
}
|
||||
pocketingIntentionInfo {
|
||||
|
@ -70,8 +70,11 @@ fragment ShotWithAllFeatures on ShotGQL {
|
||||
spinType
|
||||
}
|
||||
pocketingIntentionFeatures {
|
||||
targetPocketDistance
|
||||
make
|
||||
targetPocketDistance
|
||||
targetPocketAngle
|
||||
targetPocketAngleDirection
|
||||
marginOfErrorInDegrees
|
||||
intendedPocketType
|
||||
}
|
||||
pocketingIntentionInfo {
|
||||
|
Loading…
Reference in New Issue
Block a user