Compare commits
5 Commits
dean/updat
...
00cca10cb3
Author | SHA1 | Date | |
---|---|---|---|
00cca10cb3 | |||
ad704cad75 | |||
e2743abb59 | |||
67bad20d24 | |||
0160455b9f |
@@ -3593,6 +3593,8 @@ export type GetRunsForHighlightsQueryVariables = Exact<{
|
|||||||
filterInput: RunFilterInput;
|
filterInput: RunFilterInput;
|
||||||
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
runIds?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
||||||
runsOrdering?: InputMaybe<GetRunsOrdering>;
|
runsOrdering?: InputMaybe<GetRunsOrdering>;
|
||||||
|
limit?: Scalars["Int"]["input"];
|
||||||
|
countRespectsLimit?: Scalars["Boolean"]["input"];
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export type GetRunsForHighlightsQuery = {
|
export type GetRunsForHighlightsQuery = {
|
||||||
@@ -3612,6 +3614,17 @@ 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"]>;
|
||||||
@@ -3635,8 +3648,14 @@ export type GetRunsWithTimestampsQuery = {
|
|||||||
videoId: number;
|
videoId: number;
|
||||||
id: number;
|
id: number;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
shotDifficulty?: {
|
pocketingIntentionFeatures?: {
|
||||||
__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;
|
||||||
}>;
|
}>;
|
||||||
@@ -5121,6 +5140,17 @@ 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
|
||||||
@@ -6092,11 +6122,15 @@ export const GetRunsForHighlightsDocument = gql`
|
|||||||
$filterInput: RunFilterInput!
|
$filterInput: RunFilterInput!
|
||||||
$runIds: [Int!] = null
|
$runIds: [Int!] = null
|
||||||
$runsOrdering: GetRunsOrdering
|
$runsOrdering: GetRunsOrdering
|
||||||
|
$limit: Int! = 500
|
||||||
|
$countRespectsLimit: Boolean! = false
|
||||||
) {
|
) {
|
||||||
getRuns(
|
getRuns(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
runIds: $runIds
|
runIds: $runIds
|
||||||
runsOrdering: $runsOrdering
|
runsOrdering: $runsOrdering
|
||||||
|
limit: $limit
|
||||||
|
countRespectsLimit: $countRespectsLimit
|
||||||
) {
|
) {
|
||||||
count
|
count
|
||||||
runs {
|
runs {
|
||||||
@@ -6129,6 +6163,8 @@ export const GetRunsForHighlightsDocument = gql`
|
|||||||
* filterInput: // value for 'filterInput'
|
* filterInput: // value for 'filterInput'
|
||||||
* runIds: // value for 'runIds'
|
* runIds: // value for 'runIds'
|
||||||
* runsOrdering: // value for 'runsOrdering'
|
* runsOrdering: // value for 'runsOrdering'
|
||||||
|
* limit: // value for 'limit'
|
||||||
|
* countRespectsLimit: // value for 'countRespectsLimit'
|
||||||
* },
|
* },
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
@@ -6202,14 +6238,15 @@ export const GetRunsWithTimestampsDocument = gql`
|
|||||||
videoId
|
videoId
|
||||||
id
|
id
|
||||||
createdAt
|
createdAt
|
||||||
shotDifficulty: pocketingIntentionFeatures {
|
pocketingIntentionFeatures {
|
||||||
difficulty
|
...PocketingIntentionFragment
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
runIds
|
runIds
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
${PocketingIntentionFragmentFragmentDoc}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -2,11 +2,15 @@ query GetRunsForHighlights(
|
|||||||
$filterInput: RunFilterInput!
|
$filterInput: RunFilterInput!
|
||||||
$runIds: [Int!] = null
|
$runIds: [Int!] = null
|
||||||
$runsOrdering: GetRunsOrdering
|
$runsOrdering: GetRunsOrdering
|
||||||
|
$limit: Int! = 500
|
||||||
|
$countRespectsLimit: Boolean! = false
|
||||||
) {
|
) {
|
||||||
getRuns(
|
getRuns(
|
||||||
filterInput: $filterInput
|
filterInput: $filterInput
|
||||||
runIds: $runIds
|
runIds: $runIds
|
||||||
runsOrdering: $runsOrdering
|
runsOrdering: $runsOrdering
|
||||||
|
limit: $limit
|
||||||
|
countRespectsLimit: $countRespectsLimit
|
||||||
) {
|
) {
|
||||||
count
|
count
|
||||||
runs {
|
runs {
|
||||||
@@ -23,6 +27,16 @@ 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
|
||||||
@@ -43,8 +57,8 @@ query GetRunsWithTimestamps(
|
|||||||
videoId
|
videoId
|
||||||
id
|
id
|
||||||
createdAt
|
createdAt
|
||||||
shotDifficulty: pocketingIntentionFeatures {
|
pocketingIntentionFeatures {
|
||||||
difficulty
|
...PocketingIntentionFragment
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user