Compare commits

..

No commits in common. "00cca10cb3b2935adc81078eb4d39bc834a69e83" and "e2743abb59a3bbd6d54218d411d416ea35cfa588" have entirely different histories.

2 changed files with 5 additions and 44 deletions

View File

@ -3614,17 +3614,6 @@ export type GetRunsForHighlightsQuery = {
}; };
}; };
export type PocketingIntentionFragmentFragment = {
__typename?: "PocketingIntentionFeaturesGQL";
make?: boolean | null;
targetPocketDistance?: number | null;
targetPocketAngle?: number | null;
targetPocketAngleDirection?: ShotDirectionEnum | null;
marginOfErrorInDegrees?: number | null;
intendedPocketType?: PocketEnum | null;
difficulty?: number | null;
};
export type GetRunsWithTimestampsQueryVariables = Exact<{ export type GetRunsWithTimestampsQueryVariables = Exact<{
filterInput: RunFilterInput; filterInput: RunFilterInput;
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>; runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
@ -3648,14 +3637,8 @@ export type GetRunsWithTimestampsQuery = {
videoId: number; videoId: number;
id: number; id: number;
createdAt?: any | null; createdAt?: any | null;
pocketingIntentionFeatures?: { shotDifficulty?: {
__typename?: "PocketingIntentionFeaturesGQL"; __typename?: "PocketingIntentionFeaturesGQL";
make?: boolean | null;
targetPocketDistance?: number | null;
targetPocketAngle?: number | null;
targetPocketAngleDirection?: ShotDirectionEnum | null;
marginOfErrorInDegrees?: number | null;
intendedPocketType?: PocketEnum | null;
difficulty?: number | null; difficulty?: number | null;
} | null; } | null;
}>; }>;
@ -5140,17 +5123,6 @@ export const MedalFieldsFragmentDoc = gql`
nickname nickname
} }
`; `;
export const PocketingIntentionFragmentFragmentDoc = gql`
fragment PocketingIntentionFragment on PocketingIntentionFeaturesGQL {
make
targetPocketDistance
targetPocketAngle
targetPocketAngleDirection
marginOfErrorInDegrees
intendedPocketType
difficulty
}
`;
export const ShotWithAllFeaturesFragmentDoc = gql` export const ShotWithAllFeaturesFragmentDoc = gql`
fragment ShotWithAllFeatures on ShotGQL { fragment ShotWithAllFeatures on ShotGQL {
id id
@ -6238,15 +6210,14 @@ export const GetRunsWithTimestampsDocument = gql`
videoId videoId
id id
createdAt createdAt
pocketingIntentionFeatures { shotDifficulty: pocketingIntentionFeatures {
...PocketingIntentionFragment difficulty
} }
} }
} }
runIds runIds
} }
} }
${PocketingIntentionFragmentFragmentDoc}
`; `;
/** /**

View File

@ -27,16 +27,6 @@ query GetRunsForHighlights(
} }
} }
fragment PocketingIntentionFragment on PocketingIntentionFeaturesGQL {
make
targetPocketDistance
targetPocketAngle
targetPocketAngleDirection
marginOfErrorInDegrees
intendedPocketType
difficulty
}
query GetRunsWithTimestamps( query GetRunsWithTimestamps(
$filterInput: RunFilterInput! $filterInput: RunFilterInput!
$runIds: [Int!] = null $runIds: [Int!] = null
@ -57,8 +47,8 @@ query GetRunsWithTimestamps(
videoId videoId
id id
createdAt createdAt
pocketingIntentionFeatures { shotDifficulty: pocketingIntentionFeatures {
...PocketingIntentionFragment difficulty
} }
} }
} }