|
|
|
|
@@ -72,6 +72,12 @@ export type AggregationInput =
|
|
|
|
|
}
|
|
|
|
|
| { bucketSet?: never; datetimeRange?: never; enum: EnumAggregation };
|
|
|
|
|
|
|
|
|
|
export enum AlignedIntervalEnum {
|
|
|
|
|
Month = "MONTH",
|
|
|
|
|
Week = "WEEK",
|
|
|
|
|
Year = "YEAR",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type BankFeaturesGql = {
|
|
|
|
|
__typename?: "BankFeaturesGQL";
|
|
|
|
|
bankAngle: Scalars["Float"]["output"];
|
|
|
|
|
@@ -1503,6 +1509,7 @@ export type GetShotsPagination = {
|
|
|
|
|
export type GetShotsResult = {
|
|
|
|
|
__typename?: "GetShotsResult";
|
|
|
|
|
count?: Maybe<Scalars["Int"]["output"]>;
|
|
|
|
|
ids: Array<Scalars["Int"]["output"]>;
|
|
|
|
|
shots: Array<ShotGql>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
@@ -1727,6 +1734,7 @@ export type Query = {
|
|
|
|
|
getPlayTime: UserPlayTimeGql;
|
|
|
|
|
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
|
|
|
|
|
getShots: Array<ShotGql>;
|
|
|
|
|
getShotsByIds: Array<ShotGql>;
|
|
|
|
|
getShotsWithMetadata: GetShotsResult;
|
|
|
|
|
getUser?: Maybe<UserGql>;
|
|
|
|
|
getUserTags: Array<TagGql>;
|
|
|
|
|
@@ -1760,8 +1768,13 @@ export type QueryGetShotsArgs = {
|
|
|
|
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type QueryGetShotsByIdsArgs = {
|
|
|
|
|
ids: Array<Scalars["Int"]["input"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type QueryGetShotsWithMetadataArgs = {
|
|
|
|
|
filterInput: FilterInput;
|
|
|
|
|
ids?: InputMaybe<Array<Scalars["Int"]["input"]>>;
|
|
|
|
|
limit?: Scalars["Int"]["input"];
|
|
|
|
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
|
|
|
|
};
|
|
|
|
|
@@ -1914,20 +1927,17 @@ export type TargetMetricsGql = {
|
|
|
|
|
spinTypeCounts?: Maybe<SpinTypeCountsGql>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TimeInterval = {
|
|
|
|
|
/** True eg 1/15-3/15 => [(1/15,1/31), (2/1,2/28), (3/1,3/15)] False eg 1/15-2/15 => [(1/15,2/14), (2/14,3/15)] */
|
|
|
|
|
calendarAlignedMonths?: Scalars["Boolean"]["input"];
|
|
|
|
|
export type TimeDeltaGql = {
|
|
|
|
|
days?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
hours?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
minutes?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
months?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
/** A second is the base unit and cannot be subdivided */
|
|
|
|
|
seconds?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
weeks?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
/** Assumes a year is 365 days long */
|
|
|
|
|
years?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TimeInterval =
|
|
|
|
|
| { aligned: AlignedIntervalEnum; timedelta?: never }
|
|
|
|
|
| { aligned?: never; timedelta: TimeDeltaGql };
|
|
|
|
|
|
|
|
|
|
export type TooManyInitUploadsErr = {
|
|
|
|
|
__typename?: "TooManyInitUploadsErr";
|
|
|
|
|
linksRequested: Scalars["Int"]["output"];
|
|
|
|
|
@@ -2209,64 +2219,6 @@ export type GetVideoMakePercentageIntervalsQuery = {
|
|
|
|
|
}>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetShotsQueryVariables = Exact<{
|
|
|
|
|
filterInput: FilterInput;
|
|
|
|
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
|
|
|
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
includeCreatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeUpdatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectFeatures?: Scalars["Boolean"]["input"];
|
|
|
|
|
includePocketingIntentionFeatures?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectDistance?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectAngle?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueBallSpeed?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeSpinType?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeShotDirection?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeTargetPocketDistance?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeMake?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeIntendedPocketType?: Scalars["Boolean"]["input"];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type GetShotsQuery = {
|
|
|
|
|
__typename?: "Query";
|
|
|
|
|
getShots: Array<{
|
|
|
|
|
__typename?: "ShotGQL";
|
|
|
|
|
id: number;
|
|
|
|
|
videoId: number;
|
|
|
|
|
startFrame: number;
|
|
|
|
|
endFrame: number;
|
|
|
|
|
falsePositiveScore?: number | null;
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
user?: { __typename?: "UserGQL"; id: number } | null;
|
|
|
|
|
video?: {
|
|
|
|
|
__typename?: "VideoGQL";
|
|
|
|
|
stream?: {
|
|
|
|
|
__typename?: "UploadStreamGQL";
|
|
|
|
|
resolution: {
|
|
|
|
|
__typename?: "VideoResolutionGQL";
|
|
|
|
|
width?: number | null;
|
|
|
|
|
height?: number | null;
|
|
|
|
|
};
|
|
|
|
|
} | null;
|
|
|
|
|
} | null;
|
|
|
|
|
cueObjectFeatures?: {
|
|
|
|
|
__typename?: "CueObjectFeaturesGQL";
|
|
|
|
|
cueObjectDistance?: number | null;
|
|
|
|
|
cueObjectAngle?: number | null;
|
|
|
|
|
cueBallSpeed?: number | null;
|
|
|
|
|
shotDirection?: ShotDirectionEnum | null;
|
|
|
|
|
spinType?: SpinTypeEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
pocketingIntentionFeatures?: {
|
|
|
|
|
__typename?: "PocketingIntentionFeaturesGQL";
|
|
|
|
|
targetPocketDistance?: number | null;
|
|
|
|
|
make?: boolean | null;
|
|
|
|
|
intendedPocketType?: PocketEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
}>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetSerializedShotPathsQueryVariables = Exact<{
|
|
|
|
|
filterInput: FilterInput;
|
|
|
|
|
}>;
|
|
|
|
|
@@ -2303,18 +2255,7 @@ export type GetShotsWithMetadataQueryVariables = Exact<{
|
|
|
|
|
filterInput: FilterInput;
|
|
|
|
|
shotsPagination?: InputMaybe<GetShotsPagination>;
|
|
|
|
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
includeCreatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeUpdatedAt?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectFeatures?: Scalars["Boolean"]["input"];
|
|
|
|
|
includePocketingIntentionFeatures?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectDistance?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueObjectAngle?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeCueBallSpeed?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeSpinType?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeShotDirection?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeTargetPocketDistance?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeMake?: Scalars["Boolean"]["input"];
|
|
|
|
|
includeIntendedPocketType?: Scalars["Boolean"]["input"];
|
|
|
|
|
ids?: InputMaybe<Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"]>;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type GetShotsWithMetadataQuery = {
|
|
|
|
|
@@ -2322,6 +2263,7 @@ export type GetShotsWithMetadataQuery = {
|
|
|
|
|
getShotsWithMetadata: {
|
|
|
|
|
__typename?: "GetShotsResult";
|
|
|
|
|
count?: number | null;
|
|
|
|
|
ids: Array<number>;
|
|
|
|
|
shots: Array<{
|
|
|
|
|
__typename?: "ShotGQL";
|
|
|
|
|
id: number;
|
|
|
|
|
@@ -2371,6 +2313,107 @@ export type GetShotsWithMetadataQuery = {
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetShotsByIdsQueryVariables = Exact<{
|
|
|
|
|
ids: Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type GetShotsByIdsQuery = {
|
|
|
|
|
__typename?: "Query";
|
|
|
|
|
getShotsByIds: Array<{
|
|
|
|
|
__typename?: "ShotGQL";
|
|
|
|
|
id: number;
|
|
|
|
|
videoId: number;
|
|
|
|
|
startFrame: number;
|
|
|
|
|
endFrame: number;
|
|
|
|
|
falsePositiveScore?: number | null;
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
user?: { __typename?: "UserGQL"; id: number } | null;
|
|
|
|
|
video?: {
|
|
|
|
|
__typename?: "VideoGQL";
|
|
|
|
|
stream?: {
|
|
|
|
|
__typename?: "UploadStreamGQL";
|
|
|
|
|
resolution: {
|
|
|
|
|
__typename?: "VideoResolutionGQL";
|
|
|
|
|
width?: number | null;
|
|
|
|
|
height?: number | null;
|
|
|
|
|
};
|
|
|
|
|
} | null;
|
|
|
|
|
} | null;
|
|
|
|
|
cueObjectFeatures?: {
|
|
|
|
|
__typename?: "CueObjectFeaturesGQL";
|
|
|
|
|
cueObjectDistance?: number | null;
|
|
|
|
|
cueObjectAngle?: number | null;
|
|
|
|
|
cueBallSpeed?: number | null;
|
|
|
|
|
shotDirection?: ShotDirectionEnum | null;
|
|
|
|
|
spinType?: SpinTypeEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
pocketingIntentionFeatures?: {
|
|
|
|
|
__typename?: "PocketingIntentionFeaturesGQL";
|
|
|
|
|
targetPocketDistance?: number | null;
|
|
|
|
|
make?: boolean | null;
|
|
|
|
|
intendedPocketType?: PocketEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
pocketingIntentionInfo?: {
|
|
|
|
|
__typename?: "PocketingIntentionInfoGQL";
|
|
|
|
|
ballId: number;
|
|
|
|
|
pocketId: PocketIdentifier;
|
|
|
|
|
pathMetadataIndex: number;
|
|
|
|
|
} | null;
|
|
|
|
|
serializedShotPaths?: {
|
|
|
|
|
__typename?: "SerializedShotPathsGQL";
|
|
|
|
|
b64EncodedBuffer?: string | null;
|
|
|
|
|
} | null;
|
|
|
|
|
}>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ShotWithAllFeaturesFragment = {
|
|
|
|
|
__typename?: "ShotGQL";
|
|
|
|
|
id: number;
|
|
|
|
|
videoId: number;
|
|
|
|
|
startFrame: number;
|
|
|
|
|
endFrame: number;
|
|
|
|
|
falsePositiveScore?: number | null;
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
user?: { __typename?: "UserGQL"; id: number } | null;
|
|
|
|
|
video?: {
|
|
|
|
|
__typename?: "VideoGQL";
|
|
|
|
|
stream?: {
|
|
|
|
|
__typename?: "UploadStreamGQL";
|
|
|
|
|
resolution: {
|
|
|
|
|
__typename?: "VideoResolutionGQL";
|
|
|
|
|
width?: number | null;
|
|
|
|
|
height?: number | null;
|
|
|
|
|
};
|
|
|
|
|
} | null;
|
|
|
|
|
} | null;
|
|
|
|
|
cueObjectFeatures?: {
|
|
|
|
|
__typename?: "CueObjectFeaturesGQL";
|
|
|
|
|
cueObjectDistance?: number | null;
|
|
|
|
|
cueObjectAngle?: number | null;
|
|
|
|
|
cueBallSpeed?: number | null;
|
|
|
|
|
shotDirection?: ShotDirectionEnum | null;
|
|
|
|
|
spinType?: SpinTypeEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
pocketingIntentionFeatures?: {
|
|
|
|
|
__typename?: "PocketingIntentionFeaturesGQL";
|
|
|
|
|
targetPocketDistance?: number | null;
|
|
|
|
|
make?: boolean | null;
|
|
|
|
|
intendedPocketType?: PocketEnum | null;
|
|
|
|
|
} | null;
|
|
|
|
|
pocketingIntentionInfo?: {
|
|
|
|
|
__typename?: "PocketingIntentionInfoGQL";
|
|
|
|
|
ballId: number;
|
|
|
|
|
pocketId: PocketIdentifier;
|
|
|
|
|
pathMetadataIndex: number;
|
|
|
|
|
} | null;
|
|
|
|
|
serializedShotPaths?: {
|
|
|
|
|
__typename?: "SerializedShotPathsGQL";
|
|
|
|
|
b64EncodedBuffer?: string | null;
|
|
|
|
|
} | null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
|
|
|
|
fileExt?: InputMaybe<Scalars["String"]["input"]>;
|
|
|
|
|
}>;
|
|
|
|
|
@@ -2914,6 +2957,48 @@ export type GetUploadStreamsWithDetailsQuery = {
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const ShotWithAllFeaturesFragmentDoc = gql`
|
|
|
|
|
fragment ShotWithAllFeatures on ShotGQL {
|
|
|
|
|
id
|
|
|
|
|
videoId
|
|
|
|
|
startFrame
|
|
|
|
|
endFrame
|
|
|
|
|
user {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
falsePositiveScore
|
|
|
|
|
video {
|
|
|
|
|
stream {
|
|
|
|
|
resolution {
|
|
|
|
|
width
|
|
|
|
|
height
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
createdAt
|
|
|
|
|
updatedAt
|
|
|
|
|
cueObjectFeatures {
|
|
|
|
|
cueObjectDistance
|
|
|
|
|
cueObjectAngle
|
|
|
|
|
cueBallSpeed
|
|
|
|
|
shotDirection
|
|
|
|
|
spinType
|
|
|
|
|
}
|
|
|
|
|
pocketingIntentionFeatures {
|
|
|
|
|
targetPocketDistance
|
|
|
|
|
make
|
|
|
|
|
intendedPocketType
|
|
|
|
|
}
|
|
|
|
|
pocketingIntentionInfo {
|
|
|
|
|
ballId
|
|
|
|
|
pocketId
|
|
|
|
|
pathMetadataIndex
|
|
|
|
|
}
|
|
|
|
|
serializedShotPaths {
|
|
|
|
|
b64EncodedBuffer
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
export const GetAggregatedShotMetricsDocument = gql`
|
|
|
|
|
query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
|
|
|
|
getAggregatedShotMetrics(aggregateInput: $aggregateInput) {
|
|
|
|
|
@@ -3253,138 +3338,6 @@ export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetVideoMakePercentageIntervalsQuery,
|
|
|
|
|
GetVideoMakePercentageIntervalsQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetShotsDocument = gql`
|
|
|
|
|
query GetShots(
|
|
|
|
|
$filterInput: FilterInput!
|
|
|
|
|
$shotsPagination: GetShotsPagination
|
|
|
|
|
$limit: Int
|
|
|
|
|
$includeCreatedAt: Boolean! = false
|
|
|
|
|
$includeUpdatedAt: Boolean! = false
|
|
|
|
|
$includeCueObjectFeatures: Boolean! = false
|
|
|
|
|
$includePocketingIntentionFeatures: Boolean! = false
|
|
|
|
|
$includeCueObjectDistance: Boolean! = false
|
|
|
|
|
$includeCueObjectAngle: Boolean! = false
|
|
|
|
|
$includeCueBallSpeed: Boolean! = false
|
|
|
|
|
$includeSpinType: Boolean! = false
|
|
|
|
|
$includeShotDirection: Boolean! = false
|
|
|
|
|
$includeTargetPocketDistance: Boolean! = false
|
|
|
|
|
$includeMake: Boolean! = false
|
|
|
|
|
$includeIntendedPocketType: Boolean! = false
|
|
|
|
|
) {
|
|
|
|
|
getShots(
|
|
|
|
|
filterInput: $filterInput
|
|
|
|
|
shotsPagination: $shotsPagination
|
|
|
|
|
limit: $limit
|
|
|
|
|
) {
|
|
|
|
|
id
|
|
|
|
|
videoId
|
|
|
|
|
startFrame
|
|
|
|
|
endFrame
|
|
|
|
|
user {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
falsePositiveScore
|
|
|
|
|
video {
|
|
|
|
|
stream {
|
|
|
|
|
resolution {
|
|
|
|
|
width
|
|
|
|
|
height
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
createdAt @include(if: $includeCreatedAt)
|
|
|
|
|
updatedAt @include(if: $includeUpdatedAt)
|
|
|
|
|
cueObjectFeatures @include(if: $includeCueObjectFeatures) {
|
|
|
|
|
cueObjectDistance @include(if: $includeCueObjectDistance)
|
|
|
|
|
cueObjectAngle @include(if: $includeCueObjectAngle)
|
|
|
|
|
cueBallSpeed @include(if: $includeCueBallSpeed)
|
|
|
|
|
shotDirection @include(if: $includeShotDirection)
|
|
|
|
|
spinType @include(if: $includeSpinType)
|
|
|
|
|
}
|
|
|
|
|
pocketingIntentionFeatures
|
|
|
|
|
@include(if: $includePocketingIntentionFeatures) {
|
|
|
|
|
targetPocketDistance @include(if: $includeTargetPocketDistance)
|
|
|
|
|
make @include(if: $includeMake)
|
|
|
|
|
intendedPocketType @include(if: $includeIntendedPocketType)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* __useGetShotsQuery__
|
|
|
|
|
*
|
|
|
|
|
* To run a query within a React component, call `useGetShotsQuery` and pass it any options that fit your needs.
|
|
|
|
|
* When your component renders, `useGetShotsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
|
|
|
* you can use to render your UI.
|
|
|
|
|
*
|
|
|
|
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
* const { data, loading, error } = useGetShotsQuery({
|
|
|
|
|
* variables: {
|
|
|
|
|
* filterInput: // value for 'filterInput'
|
|
|
|
|
* shotsPagination: // value for 'shotsPagination'
|
|
|
|
|
* limit: // value for 'limit'
|
|
|
|
|
* includeCreatedAt: // value for 'includeCreatedAt'
|
|
|
|
|
* includeUpdatedAt: // value for 'includeUpdatedAt'
|
|
|
|
|
* includeCueObjectFeatures: // value for 'includeCueObjectFeatures'
|
|
|
|
|
* includePocketingIntentionFeatures: // value for 'includePocketingIntentionFeatures'
|
|
|
|
|
* includeCueObjectDistance: // value for 'includeCueObjectDistance'
|
|
|
|
|
* includeCueObjectAngle: // value for 'includeCueObjectAngle'
|
|
|
|
|
* includeCueBallSpeed: // value for 'includeCueBallSpeed'
|
|
|
|
|
* includeSpinType: // value for 'includeSpinType'
|
|
|
|
|
* includeShotDirection: // value for 'includeShotDirection'
|
|
|
|
|
* includeTargetPocketDistance: // value for 'includeTargetPocketDistance'
|
|
|
|
|
* includeMake: // value for 'includeMake'
|
|
|
|
|
* includeIntendedPocketType: // value for 'includeIntendedPocketType'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
export function useGetShotsQuery(
|
|
|
|
|
baseOptions: Apollo.QueryHookOptions<GetShotsQuery, GetShotsQueryVariables>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useQuery<GetShotsQuery, GetShotsQueryVariables>(
|
|
|
|
|
GetShotsDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetShotsLazyQuery(
|
|
|
|
|
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
|
|
|
GetShotsQuery,
|
|
|
|
|
GetShotsQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useLazyQuery<GetShotsQuery, GetShotsQueryVariables>(
|
|
|
|
|
GetShotsDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetShotsSuspenseQuery(
|
|
|
|
|
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
|
|
|
GetShotsQuery,
|
|
|
|
|
GetShotsQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useSuspenseQuery<GetShotsQuery, GetShotsQueryVariables>(
|
|
|
|
|
GetShotsDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export type GetShotsQueryHookResult = ReturnType<typeof useGetShotsQuery>;
|
|
|
|
|
export type GetShotsLazyQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetShotsLazyQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetShotsSuspenseQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetShotsSuspenseQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetShotsQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetShotsQuery,
|
|
|
|
|
GetShotsQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetSerializedShotPathsDocument = gql`
|
|
|
|
|
query GetSerializedShotPaths($filterInput: FilterInput!) {
|
|
|
|
|
getShots(filterInput: $filterInput) {
|
|
|
|
|
@@ -3542,69 +3495,22 @@ export const GetShotsWithMetadataDocument = gql`
|
|
|
|
|
$filterInput: FilterInput!
|
|
|
|
|
$shotsPagination: GetShotsPagination
|
|
|
|
|
$limit: Int
|
|
|
|
|
$includeCreatedAt: Boolean! = false
|
|
|
|
|
$includeUpdatedAt: Boolean! = false
|
|
|
|
|
$includeCueObjectFeatures: Boolean! = false
|
|
|
|
|
$includePocketingIntentionFeatures: Boolean! = false
|
|
|
|
|
$includeCueObjectDistance: Boolean! = false
|
|
|
|
|
$includeCueObjectAngle: Boolean! = false
|
|
|
|
|
$includeCueBallSpeed: Boolean! = false
|
|
|
|
|
$includeSpinType: Boolean! = false
|
|
|
|
|
$includeShotDirection: Boolean! = false
|
|
|
|
|
$includeTargetPocketDistance: Boolean! = false
|
|
|
|
|
$includeMake: Boolean! = false
|
|
|
|
|
$includeIntendedPocketType: Boolean! = false
|
|
|
|
|
$ids: [Int!]
|
|
|
|
|
) {
|
|
|
|
|
getShotsWithMetadata(
|
|
|
|
|
filterInput: $filterInput
|
|
|
|
|
shotsPagination: $shotsPagination
|
|
|
|
|
limit: $limit
|
|
|
|
|
ids: $ids
|
|
|
|
|
) {
|
|
|
|
|
count
|
|
|
|
|
shots {
|
|
|
|
|
id
|
|
|
|
|
videoId
|
|
|
|
|
startFrame
|
|
|
|
|
endFrame
|
|
|
|
|
user {
|
|
|
|
|
id
|
|
|
|
|
}
|
|
|
|
|
falsePositiveScore
|
|
|
|
|
video {
|
|
|
|
|
stream {
|
|
|
|
|
resolution {
|
|
|
|
|
width
|
|
|
|
|
height
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
createdAt @include(if: $includeCreatedAt)
|
|
|
|
|
updatedAt @include(if: $includeUpdatedAt)
|
|
|
|
|
cueObjectFeatures @include(if: $includeCueObjectFeatures) {
|
|
|
|
|
cueObjectDistance @include(if: $includeCueObjectDistance)
|
|
|
|
|
cueObjectAngle @include(if: $includeCueObjectAngle)
|
|
|
|
|
cueBallSpeed @include(if: $includeCueBallSpeed)
|
|
|
|
|
shotDirection @include(if: $includeShotDirection)
|
|
|
|
|
spinType @include(if: $includeSpinType)
|
|
|
|
|
}
|
|
|
|
|
pocketingIntentionFeatures
|
|
|
|
|
@include(if: $includePocketingIntentionFeatures) {
|
|
|
|
|
targetPocketDistance @include(if: $includeTargetPocketDistance)
|
|
|
|
|
make @include(if: $includeMake)
|
|
|
|
|
intendedPocketType @include(if: $includeIntendedPocketType)
|
|
|
|
|
}
|
|
|
|
|
pocketingIntentionInfo
|
|
|
|
|
@include(if: $includePocketingIntentionFeatures) {
|
|
|
|
|
ballId
|
|
|
|
|
pocketId
|
|
|
|
|
pathMetadataIndex
|
|
|
|
|
}
|
|
|
|
|
serializedShotPaths @include(if: $includePocketingIntentionFeatures) {
|
|
|
|
|
b64EncodedBuffer
|
|
|
|
|
}
|
|
|
|
|
...ShotWithAllFeatures
|
|
|
|
|
}
|
|
|
|
|
ids
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
${ShotWithAllFeaturesFragmentDoc}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@@ -3622,18 +3528,7 @@ export const GetShotsWithMetadataDocument = gql`
|
|
|
|
|
* filterInput: // value for 'filterInput'
|
|
|
|
|
* shotsPagination: // value for 'shotsPagination'
|
|
|
|
|
* limit: // value for 'limit'
|
|
|
|
|
* includeCreatedAt: // value for 'includeCreatedAt'
|
|
|
|
|
* includeUpdatedAt: // value for 'includeUpdatedAt'
|
|
|
|
|
* includeCueObjectFeatures: // value for 'includeCueObjectFeatures'
|
|
|
|
|
* includePocketingIntentionFeatures: // value for 'includePocketingIntentionFeatures'
|
|
|
|
|
* includeCueObjectDistance: // value for 'includeCueObjectDistance'
|
|
|
|
|
* includeCueObjectAngle: // value for 'includeCueObjectAngle'
|
|
|
|
|
* includeCueBallSpeed: // value for 'includeCueBallSpeed'
|
|
|
|
|
* includeSpinType: // value for 'includeSpinType'
|
|
|
|
|
* includeShotDirection: // value for 'includeShotDirection'
|
|
|
|
|
* includeTargetPocketDistance: // value for 'includeTargetPocketDistance'
|
|
|
|
|
* includeMake: // value for 'includeMake'
|
|
|
|
|
* includeIntendedPocketType: // value for 'includeIntendedPocketType'
|
|
|
|
|
* ids: // value for 'ids'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
@@ -3686,6 +3581,80 @@ export type GetShotsWithMetadataQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetShotsWithMetadataQuery,
|
|
|
|
|
GetShotsWithMetadataQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetShotsByIdsDocument = gql`
|
|
|
|
|
query GetShotsByIds($ids: [Int!]!) {
|
|
|
|
|
getShotsByIds(ids: $ids) {
|
|
|
|
|
...ShotWithAllFeatures
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
${ShotWithAllFeaturesFragmentDoc}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* __useGetShotsByIdsQuery__
|
|
|
|
|
*
|
|
|
|
|
* To run a query within a React component, call `useGetShotsByIdsQuery` and pass it any options that fit your needs.
|
|
|
|
|
* When your component renders, `useGetShotsByIdsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
|
|
|
* you can use to render your UI.
|
|
|
|
|
*
|
|
|
|
|
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
* const { data, loading, error } = useGetShotsByIdsQuery({
|
|
|
|
|
* variables: {
|
|
|
|
|
* ids: // value for 'ids'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
export function useGetShotsByIdsQuery(
|
|
|
|
|
baseOptions: Apollo.QueryHookOptions<
|
|
|
|
|
GetShotsByIdsQuery,
|
|
|
|
|
GetShotsByIdsQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useQuery<GetShotsByIdsQuery, GetShotsByIdsQueryVariables>(
|
|
|
|
|
GetShotsByIdsDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetShotsByIdsLazyQuery(
|
|
|
|
|
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
|
|
|
GetShotsByIdsQuery,
|
|
|
|
|
GetShotsByIdsQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useLazyQuery<GetShotsByIdsQuery, GetShotsByIdsQueryVariables>(
|
|
|
|
|
GetShotsByIdsDocument,
|
|
|
|
|
options,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
export function useGetShotsByIdsSuspenseQuery(
|
|
|
|
|
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
|
|
|
GetShotsByIdsQuery,
|
|
|
|
|
GetShotsByIdsQueryVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useSuspenseQuery<
|
|
|
|
|
GetShotsByIdsQuery,
|
|
|
|
|
GetShotsByIdsQueryVariables
|
|
|
|
|
>(GetShotsByIdsDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export type GetShotsByIdsQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetShotsByIdsQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetShotsByIdsLazyQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetShotsByIdsLazyQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetShotsByIdsSuspenseQueryHookResult = ReturnType<
|
|
|
|
|
typeof useGetShotsByIdsSuspenseQuery
|
|
|
|
|
>;
|
|
|
|
|
export type GetShotsByIdsQueryResult = Apollo.QueryResult<
|
|
|
|
|
GetShotsByIdsQuery,
|
|
|
|
|
GetShotsByIdsQueryVariables
|
|
|
|
|
>;
|
|
|
|
|
export const GetProfileImageUploadLinkDocument = gql`
|
|
|
|
|
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
|
|
|
|
getProfileImageUploadLink(fileExt: $fileExt) {
|
|
|
|
|
|