Compare commits
No commits in common. "00cca10cb3b2935adc81078eb4d39bc834a69e83" and "e2743abb59a3bbd6d54218d411d416ea35cfa588" have entirely different histories.
00cca10cb3
...
e2743abb59
@ -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<{
|
||||
filterInput: RunFilterInput;
|
||||
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||
@ -3648,14 +3637,8 @@ export type GetRunsWithTimestampsQuery = {
|
||||
videoId: number;
|
||||
id: number;
|
||||
createdAt?: any | null;
|
||||
pocketingIntentionFeatures?: {
|
||||
shotDifficulty?: {
|
||||
__typename?: "PocketingIntentionFeaturesGQL";
|
||||
make?: boolean | null;
|
||||
targetPocketDistance?: number | null;
|
||||
targetPocketAngle?: number | null;
|
||||
targetPocketAngleDirection?: ShotDirectionEnum | null;
|
||||
marginOfErrorInDegrees?: number | null;
|
||||
intendedPocketType?: PocketEnum | null;
|
||||
difficulty?: number | null;
|
||||
} | null;
|
||||
}>;
|
||||
@ -5140,17 +5123,6 @@ export const MedalFieldsFragmentDoc = gql`
|
||||
nickname
|
||||
}
|
||||
`;
|
||||
export const PocketingIntentionFragmentFragmentDoc = gql`
|
||||
fragment PocketingIntentionFragment on PocketingIntentionFeaturesGQL {
|
||||
make
|
||||
targetPocketDistance
|
||||
targetPocketAngle
|
||||
targetPocketAngleDirection
|
||||
marginOfErrorInDegrees
|
||||
intendedPocketType
|
||||
difficulty
|
||||
}
|
||||
`;
|
||||
export const ShotWithAllFeaturesFragmentDoc = gql`
|
||||
fragment ShotWithAllFeatures on ShotGQL {
|
||||
id
|
||||
@ -6238,15 +6210,14 @@ export const GetRunsWithTimestampsDocument = gql`
|
||||
videoId
|
||||
id
|
||||
createdAt
|
||||
pocketingIntentionFeatures {
|
||||
...PocketingIntentionFragment
|
||||
shotDifficulty: pocketingIntentionFeatures {
|
||||
difficulty
|
||||
}
|
||||
}
|
||||
}
|
||||
runIds
|
||||
}
|
||||
}
|
||||
${PocketingIntentionFragmentFragmentDoc}
|
||||
`;
|
||||
|
||||
/**
|
||||
|
@ -27,16 +27,6 @@ query GetRunsForHighlights(
|
||||
}
|
||||
}
|
||||
|
||||
fragment PocketingIntentionFragment on PocketingIntentionFeaturesGQL {
|
||||
make
|
||||
targetPocketDistance
|
||||
targetPocketAngle
|
||||
targetPocketAngleDirection
|
||||
marginOfErrorInDegrees
|
||||
intendedPocketType
|
||||
difficulty
|
||||
}
|
||||
|
||||
query GetRunsWithTimestamps(
|
||||
$filterInput: RunFilterInput!
|
||||
$runIds: [Int!] = null
|
||||
@ -57,8 +47,8 @@ query GetRunsWithTimestamps(
|
||||
videoId
|
||||
id
|
||||
createdAt
|
||||
pocketingIntentionFeatures {
|
||||
...PocketingIntentionFragment
|
||||
shotDifficulty: pocketingIntentionFeatures {
|
||||
difficulty
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user