import * as Apollo from "@apollo/client"; import { gql } from "@apollo/client"; export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K]; }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; export type MakeEmpty< T extends { [key: string]: unknown }, K extends keyof T, > = { [_ in K]?: never }; export type Incremental = | T | { [P in keyof T]?: P extends " $fragmentName" | "__typename" ? T[P] : never; }; const defaultOptions = {} as const; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: { input: string; output: string }; String: { input: string; output: string }; Boolean: { input: boolean; output: boolean }; Int: { input: number; output: number }; Float: { input: number; output: number }; /** Date with time (isoformat) */ DateTime: { input: any; output: any }; }; export type AggregateInputGql = { aggregations: Array; filterInput?: InputMaybe; }; export type AggregateResultGql = { __typename?: "AggregateResultGQL"; aggregationIdentifiers: Array; targetMetrics: TargetMetricsGql; }; export type AggregationIdentifierGql = { __typename?: "AggregationIdentifierGQL"; featureName: Scalars["String"]["output"]; groupName: Scalars["String"]["output"]; }; export type AggregationInput = { bucketSet?: InputMaybe; enum?: InputMaybe; }; export type AndFilter = { filters: Array; }; export type BankFeaturesGql = { __typename?: "BankFeaturesGQL"; bankAngle: Scalars["Float"]["output"]; distance: Scalars["Float"]["output"]; wallsHit: Array; }; export type BoundingBoxGql = { __typename?: "BoundingBoxGQL"; height: Scalars["Float"]["output"]; left: Scalars["Float"]["output"]; top: Scalars["Float"]["output"]; width: Scalars["Float"]["output"]; }; export type BucketGql = { __typename?: "BucketGQL"; lowerBound: Scalars["Float"]["output"]; rangeKey: Scalars["String"]["output"]; }; export type BucketInputGql = { lowerBound: Scalars["Float"]["input"]; rangeKey: Scalars["String"]["input"]; }; export type BucketSetGql = { __typename?: "BucketSetGQL"; buckets: Array; feature: Scalars["String"]["output"]; keyName: Scalars["String"]["output"]; }; export type BucketSetInputGql = { buckets: Array; feature: Scalars["String"]["input"]; }; export type CreateBucketSetInput = { buckets: Array; feature: Scalars["String"]["input"]; keyName: Scalars["String"]["input"]; }; export type CreateUploadStreamReturn = { __typename?: "CreateUploadStreamReturn"; videoId: Scalars["Int"]["output"]; }; export type CueObjectFeaturesGql = { __typename?: "CueObjectFeaturesGQL"; cueBallSpeed?: Maybe; cueObjectAngle?: Maybe; cueObjectDistance?: Maybe; shotDirection?: Maybe; }; export type DeployedConfigGql = { __typename?: "DeployedConfigGQL"; allowNewUsers: Scalars["Boolean"]["output"]; devMode: Scalars["Boolean"]["output"]; firebase: Scalars["Boolean"]["output"]; }; export enum DeviceTypeEnum { Android = "ANDROID", Browser = "BROWSER", Ios = "IOS", } export type EnumAggregation = { feature: Scalars["String"]["input"]; }; export type FilterInput = { andFilters?: InputMaybe; cueBallSpeed?: InputMaybe; cueObjectAngle?: InputMaybe; cueObjectDistance?: InputMaybe; intendedPocketType?: InputMaybe>; make?: InputMaybe>; orFilters?: InputMaybe; shotDirection?: InputMaybe>; tags?: InputMaybe>; targetPocketDistance?: InputMaybe; userId?: InputMaybe>; videoId?: InputMaybe>; }; export type GetUploadLinkReturn = { __typename?: "GetUploadLinkReturn"; headers: Array>; uploadUrl: Scalars["String"]["output"]; }; export type HlsPlaylistGql = { __typename?: "HLSPlaylistGQL"; m3u8Text: Scalars["String"]["output"]; segmentDurations: Array; videoId: Scalars["Int"]["output"]; }; export type Header = { __typename?: "Header"; key: Scalars["String"]["output"]; value: Scalars["String"]["output"]; }; export type HomographyInfoGql = { __typename?: "HomographyInfoGQL"; crop: BoundingBoxGql; destPoints: PocketPointsGql; frameIndex: Scalars["Int"]["output"]; pockets: Array; sourcePoints: PocketPointsGql; }; export type IntPoint2D = { __typename?: "IntPoint2D"; x: Scalars["Int"]["output"]; y: Scalars["Int"]["output"]; }; export type MakePercentageIntervalGql = { __typename?: "MakePercentageIntervalGQL"; elapsedTime: Scalars["Float"]["output"]; makePercentage: Scalars["Float"]["output"]; }; export type Mutation = { __typename?: "Mutation"; createBucketSet: BucketSetGql; createUploadStream: CreateUploadStreamReturn; deleteVideo: Scalars["Boolean"]["output"]; editProfileImageUri: UserGql; editUploadStream: Scalars["Boolean"]["output"]; getProfileImageUploadLink: GetUploadLinkReturn; getUploadLink: GetUploadLinkReturn; setLoggerLevel: Scalars["Boolean"]["output"]; }; export type MutationCreateBucketSetArgs = { params: CreateBucketSetInput; }; export type MutationCreateUploadStreamArgs = { videoMetadata: VideoMetadataInput; }; export type MutationDeleteVideoArgs = { videoId: Scalars["Int"]["input"]; }; export type MutationEditProfileImageUriArgs = { profileImageUri: Scalars["String"]["input"]; }; export type MutationEditUploadStreamArgs = { videoId: Scalars["Int"]["input"]; videoMetadata: VideoMetadataInput; }; export type MutationGetProfileImageUploadLinkArgs = { fileExt?: InputMaybe; }; export type MutationGetUploadLinkArgs = { segmentIndex: Scalars["Int"]["input"]; videoId: Scalars["Int"]["input"]; }; export type MutationSetLoggerLevelArgs = { level: Scalars["String"]["input"]; path: Scalars["String"]["input"]; }; export type OrFilter = { filters: Array; }; export type PageInfoGql = { __typename?: "PageInfoGQL"; endCursor?: Maybe; hasNextPage: Scalars["Boolean"]["output"]; }; export enum PocketEnum { Corner = "CORNER", Side = "SIDE", } export type PocketPointsGql = { __typename?: "PocketPointsGQL"; bottomLeft: IntPoint2D; bottomRight: IntPoint2D; bottomSide: IntPoint2D; topLeft: IntPoint2D; topRight: IntPoint2D; topSide: IntPoint2D; }; export type PocketingIntentionFeaturesGql = { __typename?: "PocketingIntentionFeaturesGQL"; intendedPocketType?: Maybe; make?: Maybe; targetPocketDistance?: Maybe; }; export type Query = { __typename?: "Query"; getAggregatedShotMetrics: Array; getBucketSet?: Maybe; getDeployedConfig: DeployedConfigGql; getLoggedInUser?: Maybe; getPlayTime: UserPlayTimeGql; getShots: Array; getUser?: Maybe; getUserVideos: VideoHistoryGql; getVideo: VideoGql; getVideoMakePercentageIntervals: Array; getVideos: Array; }; export type QueryGetAggregatedShotMetricsArgs = { aggregateInput: AggregateInputGql; }; export type QueryGetBucketSetArgs = { keyName: Scalars["String"]["input"]; }; export type QueryGetPlayTimeArgs = { userId: Scalars["Int"]["input"]; }; export type QueryGetShotsArgs = { filterInput: FilterInput; }; export type QueryGetUserArgs = { userId: Scalars["Int"]["input"]; }; export type QueryGetUserVideosArgs = { after?: InputMaybe; filters?: InputMaybe; limit?: Scalars["Int"]["input"]; userId?: InputMaybe; }; export type QueryGetVideoArgs = { videoId: Scalars["Int"]["input"]; }; export type QueryGetVideoMakePercentageIntervalsArgs = { intervalDuration?: Scalars["Int"]["input"]; videoId: Scalars["ID"]["input"]; }; export type QueryGetVideosArgs = { videoIds: Array; }; export type RangeFilter = { greaterThanEqualTo?: InputMaybe; lessThan?: InputMaybe; }; export enum ShotDirectionEnum { Left = "LEFT", Right = "RIGHT", Straight = "STRAIGHT", } export type ShotGql = { __typename?: "ShotGQL"; bankFeatures?: Maybe; createdAt?: Maybe; cueObjectFeatures?: Maybe; endFrame?: Maybe; id?: Maybe; pocketingIntentionFeatures?: Maybe; startFrame?: Maybe; updatedAt?: Maybe; user?: Maybe; videoId?: Maybe; }; export type StreamErrorGql = { __typename?: "StreamErrorGQL"; message: Scalars["String"]["output"]; }; export type TargetMetricsGql = { __typename?: "TargetMetricsGQL"; count: Scalars["Int"]["output"]; makePercentage?: Maybe; }; export type UploadStreamGql = { __typename?: "UploadStreamGQL"; createdAt: Scalars["DateTime"]["output"]; errors: Array; id: Scalars["ID"]["output"]; isCompleted: Scalars["Boolean"]["output"]; linksRequested: Scalars["Int"]["output"]; lowestUnuploadedSegmentIndex: Scalars["Int"]["output"]; segmentProcessingCursor: Scalars["Int"]["output"]; updatedAt: Scalars["DateTime"]["output"]; uploadsCompleted: Scalars["Int"]["output"]; }; export type UploadStreamMetadataInput = { appVersion?: InputMaybe; browserName?: InputMaybe; browserVersion?: InputMaybe; deviceType?: InputMaybe; ipAddress?: InputMaybe; locale?: InputMaybe; networkType?: InputMaybe; osVersion?: InputMaybe; timezone?: InputMaybe; }; export type UserGql = { __typename?: "UserGQL"; createdAt?: Maybe; firebaseUid: Scalars["String"]["output"]; id: Scalars["Int"]["output"]; profileImageUri?: Maybe; updatedAt?: Maybe; username: Scalars["String"]["output"]; }; export type UserPlayTimeGql = { __typename?: "UserPlayTimeGQL"; totalSeconds: Scalars["Float"]["output"]; }; export type VideoFilterInput = { isStreamCompleted?: InputMaybe; }; export type VideoGql = { __typename?: "VideoGQL"; averageTimeBetweenShots?: Maybe; createdAt?: Maybe; elapsedTime?: Maybe; endTime?: Maybe; framesPerSecond: Scalars["Int"]["output"]; homographyHistory: Array; id: Scalars["Int"]["output"]; makePercentage: Scalars["Float"]["output"]; medianRun?: Maybe; name?: Maybe; owner?: Maybe; playlist?: Maybe; shots: Array; startTime?: Maybe; stream?: Maybe; tags: Array; totalShots: Scalars["Int"]["output"]; totalShotsMade: Scalars["Int"]["output"]; updatedAt?: Maybe; }; export type VideoHistoryGql = { __typename?: "VideoHistoryGQL"; pageInfo: PageInfoGql; videos: Array; }; export type VideoMetadataInput = { endStream?: Scalars["Boolean"]["input"]; endTime?: InputMaybe; gameType?: InputMaybe; startTime?: InputMaybe; tableSize?: InputMaybe; uploadStreamMetadataInput?: InputMaybe; videoName?: InputMaybe; }; export type VideoTag = { __typename?: "VideoTag"; name: Scalars["String"]["output"]; tagClasses: Array; }; export type VideoTagClass = { __typename?: "VideoTagClass"; name: Scalars["String"]["output"]; }; export type VideoTagClassInput = { name: Scalars["String"]["input"]; }; export type VideoTagInput = { name: Scalars["String"]["input"]; tagClasses?: Array; }; export enum WallTypeEnum { Long = "LONG", Short = "SHORT", } export type GetAggregatedShotMetricsQueryVariables = Exact<{ aggregateInput: AggregateInputGql; }>; export type GetAggregatedShotMetricsQuery = { __typename?: "Query"; getAggregatedShotMetrics: Array<{ __typename?: "AggregateResultGQL"; aggregationIdentifiers: Array<{ __typename?: "AggregationIdentifierGQL"; featureName: string; groupName: string; }>; targetMetrics: { __typename?: "TargetMetricsGQL"; count: number; makePercentage?: number | null; }; }>; }; export type GetDeployedConfigQueryVariables = Exact<{ [key: string]: never }>; export type GetDeployedConfigQuery = { __typename?: "Query"; getDeployedConfig: { __typename?: "DeployedConfigGQL"; allowNewUsers: boolean; }; }; export type GetFeedQueryVariables = Exact<{ limit?: Scalars["Int"]["input"]; after?: InputMaybe; filters?: InputMaybe; }>; export type GetFeedQuery = { __typename?: "Query"; getUserVideos: { __typename?: "VideoHistoryGQL"; videos: Array<{ __typename?: "VideoGQL"; id: number; name?: string | null; totalShotsMade: number; totalShots: number; makePercentage: number; createdAt?: any | null; updatedAt?: any | null; startTime?: any | null; endTime?: any | null; elapsedTime?: number | null; owner?: { __typename?: "UserGQL"; username: string } | null; stream?: { __typename?: "UploadStreamGQL"; isCompleted: boolean } | null; tags: Array<{ __typename?: "VideoTag"; name: string; tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>; }>; }>; pageInfo: { __typename?: "PageInfoGQL"; hasNextPage: boolean; endCursor?: string | null; }; }; }; export type GetVideoMakePercentageIntervalsQueryVariables = Exact<{ videoId: Scalars["ID"]["input"]; intervalDuration: Scalars["Int"]["input"]; }>; export type GetVideoMakePercentageIntervalsQuery = { __typename?: "Query"; getVideoMakePercentageIntervals: Array<{ __typename?: "MakePercentageIntervalGQL"; makePercentage: number; elapsedTime: number; }>; }; export type GetShotsQueryVariables = Exact<{ filterInput: FilterInput; includeCueObjectDistance?: Scalars["Boolean"]["input"]; includeCueObjectAngle?: Scalars["Boolean"]["input"]; includeCueBallSpeed?: 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 | null; videoId?: number | null; startFrame?: number | null; endFrame?: number | null; createdAt?: any | null; updatedAt?: any | null; cueObjectFeatures?: { __typename?: "CueObjectFeaturesGQL"; cueObjectDistance?: number | null; cueObjectAngle?: number | null; cueBallSpeed?: number | null; shotDirection?: ShotDirectionEnum | null; } | null; pocketingIntentionFeatures?: { __typename?: "PocketingIntentionFeaturesGQL"; targetPocketDistance?: number | null; make?: boolean | null; intendedPocketType?: PocketEnum | null; } | null; }>; }; export type GetProfileImageUploadLinkMutationVariables = Exact<{ fileExt?: InputMaybe; }>; export type GetProfileImageUploadLinkMutation = { __typename?: "Mutation"; getProfileImageUploadLink: { __typename?: "GetUploadLinkReturn"; uploadUrl: string; headers: Array<{ __typename?: "Header"; key: string; value: string; } | null>; }; }; export type EditProfileImageUriMutationVariables = Exact<{ profileImageUri: Scalars["String"]["input"]; }>; export type EditProfileImageUriMutation = { __typename?: "Mutation"; editProfileImageUri: { __typename?: "UserGQL"; id: number; firebaseUid: string; username: string; profileImageUri?: string | null; createdAt?: any | null; updatedAt?: any | null; }; }; export type GetLoggedInUserQueryVariables = Exact<{ [key: string]: never }>; export type GetLoggedInUserQuery = { __typename?: "Query"; getLoggedInUser?: { __typename?: "UserGQL"; id: number; firebaseUid: string; username: string; profileImageUri?: string | null; createdAt?: any | null; updatedAt?: any | null; } | null; }; export type GetUserPlayTimeQueryVariables = Exact<{ userId: Scalars["Int"]["input"]; }>; export type GetUserPlayTimeQuery = { __typename?: "Query"; getPlayTime: { __typename?: "UserPlayTimeGQL"; totalSeconds: number }; }; export type GetStreamMonitoringDetailsQueryVariables = Exact<{ videoId: Scalars["Int"]["input"]; }>; export type GetStreamMonitoringDetailsQuery = { __typename?: "Query"; getVideo: { __typename?: "VideoGQL"; id: number; totalShots: number; makePercentage: number; elapsedTime?: number | null; homographyHistory: Array<{ __typename?: "HomographyInfoGQL"; crop: { __typename?: "BoundingBoxGQL"; left: number; top: number; width: number; height: number; }; pockets: Array<{ __typename?: "BoundingBoxGQL"; left: number; top: number; width: number; height: number; }>; sourcePoints: { __typename?: "PocketPointsGQL"; topLeft: { __typename?: "IntPoint2D"; x: number; y: number }; topSide: { __typename?: "IntPoint2D"; x: number; y: number }; topRight: { __typename?: "IntPoint2D"; x: number; y: number }; bottomLeft: { __typename?: "IntPoint2D"; x: number; y: number }; bottomSide: { __typename?: "IntPoint2D"; x: number; y: number }; bottomRight: { __typename?: "IntPoint2D"; x: number; y: number }; }; }>; stream?: { __typename?: "UploadStreamGQL"; linksRequested: number; uploadsCompleted: number; segmentProcessingCursor: number; } | null; }; }; export type GetVideoUpdatePageDetailsQueryVariables = Exact<{ videoId: Scalars["Int"]["input"]; }>; export type GetVideoUpdatePageDetailsQuery = { __typename?: "Query"; getVideo: { __typename?: "VideoGQL"; id: number; name?: string | null; totalShots: number; makePercentage: number; elapsedTime?: number | null; tags: Array<{ __typename?: "VideoTag"; name: string; tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>; }>; }; }; export type DeleteVideoMutationVariables = Exact<{ videoId: Scalars["Int"]["input"]; }>; export type DeleteVideoMutation = { __typename?: "Mutation"; deleteVideo: boolean; }; export type GetVideoDetailsQueryVariables = Exact<{ videoId: Scalars["Int"]["input"]; }>; export type GetVideoDetailsQuery = { __typename?: "Query"; getVideo: { __typename?: "VideoGQL"; id: number; name?: string | null; averageTimeBetweenShots?: number | null; elapsedTime?: number | null; endTime?: any | null; makePercentage: number; medianRun?: number | null; startTime?: any | null; totalShots: number; totalShotsMade: number; createdAt?: any | null; updatedAt?: any | null; owner?: { __typename?: "UserGQL"; id: number; firebaseUid: string; username: string; profileImageUri?: string | null; } | null; tags: Array<{ __typename?: "VideoTag"; name: string; tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>; }>; }; }; export type CreateUploadStreamMutationVariables = Exact<{ videoMetadataInput: VideoMetadataInput; }>; export type CreateUploadStreamMutation = { __typename?: "Mutation"; createUploadStream: { __typename?: "CreateUploadStreamReturn"; videoId: number; }; }; export type GetUploadLinkMutationVariables = Exact<{ videoId: Scalars["Int"]["input"]; segmentIndex: Scalars["Int"]["input"]; }>; export type GetUploadLinkMutation = { __typename?: "Mutation"; getUploadLink: { __typename?: "GetUploadLinkReturn"; uploadUrl: string; headers: Array<{ __typename?: "Header"; key: string; value: string; } | null>; }; }; export type EditUploadStreamMutationVariables = Exact<{ videoId: Scalars["Int"]["input"]; videoMetadataInput: VideoMetadataInput; }>; export type EditUploadStreamMutation = { __typename?: "Mutation"; editUploadStream: boolean; }; export const GetAggregatedShotMetricsDocument = gql` query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) { getAggregatedShotMetrics(aggregateInput: $aggregateInput) { aggregationIdentifiers { featureName groupName } targetMetrics { count makePercentage } } } `; /** * __useGetAggregatedShotMetricsQuery__ * * To run a query within a React component, call `useGetAggregatedShotMetricsQuery` and pass it any options that fit your needs. * When your component renders, `useGetAggregatedShotMetricsQuery` 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 } = useGetAggregatedShotMetricsQuery({ * variables: { * aggregateInput: // value for 'aggregateInput' * }, * }); */ export function useGetAggregatedShotMetricsQuery( baseOptions: Apollo.QueryHookOptions< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >(GetAggregatedShotMetricsDocument, options); } export function useGetAggregatedShotMetricsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >(GetAggregatedShotMetricsDocument, options); } export function useGetAggregatedShotMetricsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >(GetAggregatedShotMetricsDocument, options); } export type GetAggregatedShotMetricsQueryHookResult = ReturnType< typeof useGetAggregatedShotMetricsQuery >; export type GetAggregatedShotMetricsLazyQueryHookResult = ReturnType< typeof useGetAggregatedShotMetricsLazyQuery >; export type GetAggregatedShotMetricsSuspenseQueryHookResult = ReturnType< typeof useGetAggregatedShotMetricsSuspenseQuery >; export type GetAggregatedShotMetricsQueryResult = Apollo.QueryResult< GetAggregatedShotMetricsQuery, GetAggregatedShotMetricsQueryVariables >; export const GetDeployedConfigDocument = gql` query getDeployedConfig { getDeployedConfig { allowNewUsers } } `; /** * __useGetDeployedConfigQuery__ * * To run a query within a React component, call `useGetDeployedConfigQuery` and pass it any options that fit your needs. * When your component renders, `useGetDeployedConfigQuery` 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 } = useGetDeployedConfigQuery({ * variables: { * }, * }); */ export function useGetDeployedConfigQuery( baseOptions?: Apollo.QueryHookOptions< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >(GetDeployedConfigDocument, options); } export function useGetDeployedConfigLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >(GetDeployedConfigDocument, options); } export function useGetDeployedConfigSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >(GetDeployedConfigDocument, options); } export type GetDeployedConfigQueryHookResult = ReturnType< typeof useGetDeployedConfigQuery >; export type GetDeployedConfigLazyQueryHookResult = ReturnType< typeof useGetDeployedConfigLazyQuery >; export type GetDeployedConfigSuspenseQueryHookResult = ReturnType< typeof useGetDeployedConfigSuspenseQuery >; export type GetDeployedConfigQueryResult = Apollo.QueryResult< GetDeployedConfigQuery, GetDeployedConfigQueryVariables >; export const GetFeedDocument = gql` query GetFeed( $limit: Int! = 5 $after: String = null $filters: VideoFilterInput = null ) { getUserVideos(limit: $limit, after: $after, filters: $filters) { videos { id owner { username } name totalShotsMade totalShots makePercentage createdAt updatedAt startTime endTime elapsedTime stream { isCompleted } tags { tagClasses { name } name } } pageInfo { hasNextPage endCursor } } } `; /** * __useGetFeedQuery__ * * To run a query within a React component, call `useGetFeedQuery` and pass it any options that fit your needs. * When your component renders, `useGetFeedQuery` 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 } = useGetFeedQuery({ * variables: { * limit: // value for 'limit' * after: // value for 'after' * filters: // value for 'filters' * }, * }); */ export function useGetFeedQuery( baseOptions?: Apollo.QueryHookOptions, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery( GetFeedDocument, options, ); } export function useGetFeedLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetFeedQuery, GetFeedQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery( GetFeedDocument, options, ); } export function useGetFeedSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetFeedQuery, GetFeedQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery( GetFeedDocument, options, ); } export type GetFeedQueryHookResult = ReturnType; export type GetFeedLazyQueryHookResult = ReturnType; export type GetFeedSuspenseQueryHookResult = ReturnType< typeof useGetFeedSuspenseQuery >; export type GetFeedQueryResult = Apollo.QueryResult< GetFeedQuery, GetFeedQueryVariables >; export const GetVideoMakePercentageIntervalsDocument = gql` query GetVideoMakePercentageIntervals( $videoId: ID! $intervalDuration: Int! ) { getVideoMakePercentageIntervals( videoId: $videoId intervalDuration: $intervalDuration ) { makePercentage elapsedTime } } `; /** * __useGetVideoMakePercentageIntervalsQuery__ * * To run a query within a React component, call `useGetVideoMakePercentageIntervalsQuery` and pass it any options that fit your needs. * When your component renders, `useGetVideoMakePercentageIntervalsQuery` 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 } = useGetVideoMakePercentageIntervalsQuery({ * variables: { * videoId: // value for 'videoId' * intervalDuration: // value for 'intervalDuration' * }, * }); */ export function useGetVideoMakePercentageIntervalsQuery( baseOptions: Apollo.QueryHookOptions< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >(GetVideoMakePercentageIntervalsDocument, options); } export function useGetVideoMakePercentageIntervalsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >(GetVideoMakePercentageIntervalsDocument, options); } export function useGetVideoMakePercentageIntervalsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >(GetVideoMakePercentageIntervalsDocument, options); } export type GetVideoMakePercentageIntervalsQueryHookResult = ReturnType< typeof useGetVideoMakePercentageIntervalsQuery >; export type GetVideoMakePercentageIntervalsLazyQueryHookResult = ReturnType< typeof useGetVideoMakePercentageIntervalsLazyQuery >; export type GetVideoMakePercentageIntervalsSuspenseQueryHookResult = ReturnType< typeof useGetVideoMakePercentageIntervalsSuspenseQuery >; export type GetVideoMakePercentageIntervalsQueryResult = Apollo.QueryResult< GetVideoMakePercentageIntervalsQuery, GetVideoMakePercentageIntervalsQueryVariables >; export const GetShotsDocument = gql` query GetShots( $filterInput: FilterInput! $includeCueObjectDistance: Boolean! = false $includeCueObjectAngle: Boolean! = false $includeCueBallSpeed: Boolean! = false $includeShotDirection: Boolean! = false $includeTargetPocketDistance: Boolean! = false $includeMake: Boolean! = false $includeIntendedPocketType: Boolean! = false ) { getShots(filterInput: $filterInput) { id videoId startFrame endFrame createdAt updatedAt cueObjectFeatures { cueObjectDistance @include(if: $includeCueObjectDistance) cueObjectAngle @include(if: $includeCueObjectAngle) cueBallSpeed @include(if: $includeCueBallSpeed) shotDirection @include(if: $includeShotDirection) } pocketingIntentionFeatures { 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' * includeCueObjectDistance: // value for 'includeCueObjectDistance' * includeCueObjectAngle: // value for 'includeCueObjectAngle' * includeCueBallSpeed: // value for 'includeCueBallSpeed' * includeShotDirection: // value for 'includeShotDirection' * includeTargetPocketDistance: // value for 'includeTargetPocketDistance' * includeMake: // value for 'includeMake' * includeIntendedPocketType: // value for 'includeIntendedPocketType' * }, * }); */ export function useGetShotsQuery( baseOptions: Apollo.QueryHookOptions, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery( GetShotsDocument, options, ); } export function useGetShotsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetShotsQuery, GetShotsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery( GetShotsDocument, options, ); } export function useGetShotsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetShotsQuery, GetShotsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery( GetShotsDocument, options, ); } export type GetShotsQueryHookResult = ReturnType; export type GetShotsLazyQueryHookResult = ReturnType< typeof useGetShotsLazyQuery >; export type GetShotsSuspenseQueryHookResult = ReturnType< typeof useGetShotsSuspenseQuery >; export type GetShotsQueryResult = Apollo.QueryResult< GetShotsQuery, GetShotsQueryVariables >; export const GetProfileImageUploadLinkDocument = gql` mutation getProfileImageUploadLink($fileExt: String = ".png") { getProfileImageUploadLink(fileExt: $fileExt) { uploadUrl headers { key value } } } `; export type GetProfileImageUploadLinkMutationFn = Apollo.MutationFunction< GetProfileImageUploadLinkMutation, GetProfileImageUploadLinkMutationVariables >; /** * __useGetProfileImageUploadLinkMutation__ * * To run a mutation, you first call `useGetProfileImageUploadLinkMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useGetProfileImageUploadLinkMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [getProfileImageUploadLinkMutation, { data, loading, error }] = useGetProfileImageUploadLinkMutation({ * variables: { * fileExt: // value for 'fileExt' * }, * }); */ export function useGetProfileImageUploadLinkMutation( baseOptions?: Apollo.MutationHookOptions< GetProfileImageUploadLinkMutation, GetProfileImageUploadLinkMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation< GetProfileImageUploadLinkMutation, GetProfileImageUploadLinkMutationVariables >(GetProfileImageUploadLinkDocument, options); } export type GetProfileImageUploadLinkMutationHookResult = ReturnType< typeof useGetProfileImageUploadLinkMutation >; export type GetProfileImageUploadLinkMutationResult = Apollo.MutationResult; export type GetProfileImageUploadLinkMutationOptions = Apollo.BaseMutationOptions< GetProfileImageUploadLinkMutation, GetProfileImageUploadLinkMutationVariables >; export const EditProfileImageUriDocument = gql` mutation editProfileImageUri($profileImageUri: String!) { editProfileImageUri(profileImageUri: $profileImageUri) { id firebaseUid username profileImageUri createdAt updatedAt } } `; export type EditProfileImageUriMutationFn = Apollo.MutationFunction< EditProfileImageUriMutation, EditProfileImageUriMutationVariables >; /** * __useEditProfileImageUriMutation__ * * To run a mutation, you first call `useEditProfileImageUriMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useEditProfileImageUriMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [editProfileImageUriMutation, { data, loading, error }] = useEditProfileImageUriMutation({ * variables: { * profileImageUri: // value for 'profileImageUri' * }, * }); */ export function useEditProfileImageUriMutation( baseOptions?: Apollo.MutationHookOptions< EditProfileImageUriMutation, EditProfileImageUriMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation< EditProfileImageUriMutation, EditProfileImageUriMutationVariables >(EditProfileImageUriDocument, options); } export type EditProfileImageUriMutationHookResult = ReturnType< typeof useEditProfileImageUriMutation >; export type EditProfileImageUriMutationResult = Apollo.MutationResult; export type EditProfileImageUriMutationOptions = Apollo.BaseMutationOptions< EditProfileImageUriMutation, EditProfileImageUriMutationVariables >; export const GetLoggedInUserDocument = gql` query getLoggedInUser { getLoggedInUser { id firebaseUid username profileImageUri createdAt updatedAt } } `; /** * __useGetLoggedInUserQuery__ * * To run a query within a React component, call `useGetLoggedInUserQuery` and pass it any options that fit your needs. * When your component renders, `useGetLoggedInUserQuery` 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 } = useGetLoggedInUserQuery({ * variables: { * }, * }); */ export function useGetLoggedInUserQuery( baseOptions?: Apollo.QueryHookOptions< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery( GetLoggedInUserDocument, options, ); } export function useGetLoggedInUserLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >(GetLoggedInUserDocument, options); } export function useGetLoggedInUserSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >(GetLoggedInUserDocument, options); } export type GetLoggedInUserQueryHookResult = ReturnType< typeof useGetLoggedInUserQuery >; export type GetLoggedInUserLazyQueryHookResult = ReturnType< typeof useGetLoggedInUserLazyQuery >; export type GetLoggedInUserSuspenseQueryHookResult = ReturnType< typeof useGetLoggedInUserSuspenseQuery >; export type GetLoggedInUserQueryResult = Apollo.QueryResult< GetLoggedInUserQuery, GetLoggedInUserQueryVariables >; export const GetUserPlayTimeDocument = gql` query GetUserPlayTime($userId: Int!) { getPlayTime(userId: $userId) { totalSeconds } } `; /** * __useGetUserPlayTimeQuery__ * * To run a query within a React component, call `useGetUserPlayTimeQuery` and pass it any options that fit your needs. * When your component renders, `useGetUserPlayTimeQuery` 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 } = useGetUserPlayTimeQuery({ * variables: { * userId: // value for 'userId' * }, * }); */ export function useGetUserPlayTimeQuery( baseOptions: Apollo.QueryHookOptions< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery( GetUserPlayTimeDocument, options, ); } export function useGetUserPlayTimeLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >(GetUserPlayTimeDocument, options); } export function useGetUserPlayTimeSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >(GetUserPlayTimeDocument, options); } export type GetUserPlayTimeQueryHookResult = ReturnType< typeof useGetUserPlayTimeQuery >; export type GetUserPlayTimeLazyQueryHookResult = ReturnType< typeof useGetUserPlayTimeLazyQuery >; export type GetUserPlayTimeSuspenseQueryHookResult = ReturnType< typeof useGetUserPlayTimeSuspenseQuery >; export type GetUserPlayTimeQueryResult = Apollo.QueryResult< GetUserPlayTimeQuery, GetUserPlayTimeQueryVariables >; export const GetStreamMonitoringDetailsDocument = gql` query GetStreamMonitoringDetails($videoId: Int!) { getVideo(videoId: $videoId) { id totalShots makePercentage elapsedTime homographyHistory { crop { left top width height } pockets { left top width height } sourcePoints { topLeft { x y } topSide { x y } topRight { x y } bottomLeft { x y } bottomSide { x y } bottomRight { x y } } } stream { linksRequested uploadsCompleted segmentProcessingCursor } } } `; /** * __useGetStreamMonitoringDetailsQuery__ * * To run a query within a React component, call `useGetStreamMonitoringDetailsQuery` and pass it any options that fit your needs. * When your component renders, `useGetStreamMonitoringDetailsQuery` 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 } = useGetStreamMonitoringDetailsQuery({ * variables: { * videoId: // value for 'videoId' * }, * }); */ export function useGetStreamMonitoringDetailsQuery( baseOptions: Apollo.QueryHookOptions< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >(GetStreamMonitoringDetailsDocument, options); } export function useGetStreamMonitoringDetailsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >(GetStreamMonitoringDetailsDocument, options); } export function useGetStreamMonitoringDetailsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >(GetStreamMonitoringDetailsDocument, options); } export type GetStreamMonitoringDetailsQueryHookResult = ReturnType< typeof useGetStreamMonitoringDetailsQuery >; export type GetStreamMonitoringDetailsLazyQueryHookResult = ReturnType< typeof useGetStreamMonitoringDetailsLazyQuery >; export type GetStreamMonitoringDetailsSuspenseQueryHookResult = ReturnType< typeof useGetStreamMonitoringDetailsSuspenseQuery >; export type GetStreamMonitoringDetailsQueryResult = Apollo.QueryResult< GetStreamMonitoringDetailsQuery, GetStreamMonitoringDetailsQueryVariables >; export const GetVideoUpdatePageDetailsDocument = gql` query GetVideoUpdatePageDetails($videoId: Int!) { getVideo(videoId: $videoId) { id name totalShots makePercentage elapsedTime tags { tagClasses { name } name } } } `; /** * __useGetVideoUpdatePageDetailsQuery__ * * To run a query within a React component, call `useGetVideoUpdatePageDetailsQuery` and pass it any options that fit your needs. * When your component renders, `useGetVideoUpdatePageDetailsQuery` 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 } = useGetVideoUpdatePageDetailsQuery({ * variables: { * videoId: // value for 'videoId' * }, * }); */ export function useGetVideoUpdatePageDetailsQuery( baseOptions: Apollo.QueryHookOptions< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >(GetVideoUpdatePageDetailsDocument, options); } export function useGetVideoUpdatePageDetailsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >(GetVideoUpdatePageDetailsDocument, options); } export function useGetVideoUpdatePageDetailsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >(GetVideoUpdatePageDetailsDocument, options); } export type GetVideoUpdatePageDetailsQueryHookResult = ReturnType< typeof useGetVideoUpdatePageDetailsQuery >; export type GetVideoUpdatePageDetailsLazyQueryHookResult = ReturnType< typeof useGetVideoUpdatePageDetailsLazyQuery >; export type GetVideoUpdatePageDetailsSuspenseQueryHookResult = ReturnType< typeof useGetVideoUpdatePageDetailsSuspenseQuery >; export type GetVideoUpdatePageDetailsQueryResult = Apollo.QueryResult< GetVideoUpdatePageDetailsQuery, GetVideoUpdatePageDetailsQueryVariables >; export const DeleteVideoDocument = gql` mutation DeleteVideo($videoId: Int!) { deleteVideo(videoId: $videoId) } `; export type DeleteVideoMutationFn = Apollo.MutationFunction< DeleteVideoMutation, DeleteVideoMutationVariables >; /** * __useDeleteVideoMutation__ * * To run a mutation, you first call `useDeleteVideoMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useDeleteVideoMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [deleteVideoMutation, { data, loading, error }] = useDeleteVideoMutation({ * variables: { * videoId: // value for 'videoId' * }, * }); */ export function useDeleteVideoMutation( baseOptions?: Apollo.MutationHookOptions< DeleteVideoMutation, DeleteVideoMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation( DeleteVideoDocument, options, ); } export type DeleteVideoMutationHookResult = ReturnType< typeof useDeleteVideoMutation >; export type DeleteVideoMutationResult = Apollo.MutationResult; export type DeleteVideoMutationOptions = Apollo.BaseMutationOptions< DeleteVideoMutation, DeleteVideoMutationVariables >; export const GetVideoDetailsDocument = gql` query GetVideoDetails($videoId: Int!) { getVideo(videoId: $videoId) { id name averageTimeBetweenShots elapsedTime endTime makePercentage makePercentage medianRun startTime totalShots totalShots totalShotsMade createdAt updatedAt owner { id firebaseUid username profileImageUri } tags { tagClasses { name } name } } } `; /** * __useGetVideoDetailsQuery__ * * To run a query within a React component, call `useGetVideoDetailsQuery` and pass it any options that fit your needs. * When your component renders, `useGetVideoDetailsQuery` 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 } = useGetVideoDetailsQuery({ * variables: { * videoId: // value for 'videoId' * }, * }); */ export function useGetVideoDetailsQuery( baseOptions: Apollo.QueryHookOptions< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useQuery( GetVideoDetailsDocument, options, ); } export function useGetVideoDetailsLazyQuery( baseOptions?: Apollo.LazyQueryHookOptions< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useLazyQuery< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >(GetVideoDetailsDocument, options); } export function useGetVideoDetailsSuspenseQuery( baseOptions?: Apollo.SuspenseQueryHookOptions< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useSuspenseQuery< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >(GetVideoDetailsDocument, options); } export type GetVideoDetailsQueryHookResult = ReturnType< typeof useGetVideoDetailsQuery >; export type GetVideoDetailsLazyQueryHookResult = ReturnType< typeof useGetVideoDetailsLazyQuery >; export type GetVideoDetailsSuspenseQueryHookResult = ReturnType< typeof useGetVideoDetailsSuspenseQuery >; export type GetVideoDetailsQueryResult = Apollo.QueryResult< GetVideoDetailsQuery, GetVideoDetailsQueryVariables >; export const CreateUploadStreamDocument = gql` mutation CreateUploadStream($videoMetadataInput: VideoMetadataInput!) { createUploadStream(videoMetadata: $videoMetadataInput) { videoId } } `; export type CreateUploadStreamMutationFn = Apollo.MutationFunction< CreateUploadStreamMutation, CreateUploadStreamMutationVariables >; /** * __useCreateUploadStreamMutation__ * * To run a mutation, you first call `useCreateUploadStreamMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useCreateUploadStreamMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [createUploadStreamMutation, { data, loading, error }] = useCreateUploadStreamMutation({ * variables: { * videoMetadataInput: // value for 'videoMetadataInput' * }, * }); */ export function useCreateUploadStreamMutation( baseOptions?: Apollo.MutationHookOptions< CreateUploadStreamMutation, CreateUploadStreamMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation< CreateUploadStreamMutation, CreateUploadStreamMutationVariables >(CreateUploadStreamDocument, options); } export type CreateUploadStreamMutationHookResult = ReturnType< typeof useCreateUploadStreamMutation >; export type CreateUploadStreamMutationResult = Apollo.MutationResult; export type CreateUploadStreamMutationOptions = Apollo.BaseMutationOptions< CreateUploadStreamMutation, CreateUploadStreamMutationVariables >; export const GetUploadLinkDocument = gql` mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) { getUploadLink(videoId: $videoId, segmentIndex: $segmentIndex) { uploadUrl headers { key value } } } `; export type GetUploadLinkMutationFn = Apollo.MutationFunction< GetUploadLinkMutation, GetUploadLinkMutationVariables >; /** * __useGetUploadLinkMutation__ * * To run a mutation, you first call `useGetUploadLinkMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useGetUploadLinkMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [getUploadLinkMutation, { data, loading, error }] = useGetUploadLinkMutation({ * variables: { * videoId: // value for 'videoId' * segmentIndex: // value for 'segmentIndex' * }, * }); */ export function useGetUploadLinkMutation( baseOptions?: Apollo.MutationHookOptions< GetUploadLinkMutation, GetUploadLinkMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation< GetUploadLinkMutation, GetUploadLinkMutationVariables >(GetUploadLinkDocument, options); } export type GetUploadLinkMutationHookResult = ReturnType< typeof useGetUploadLinkMutation >; export type GetUploadLinkMutationResult = Apollo.MutationResult; export type GetUploadLinkMutationOptions = Apollo.BaseMutationOptions< GetUploadLinkMutation, GetUploadLinkMutationVariables >; export const EditUploadStreamDocument = gql` mutation EditUploadStream( $videoId: Int! $videoMetadataInput: VideoMetadataInput! ) { editUploadStream(videoId: $videoId, videoMetadata: $videoMetadataInput) } `; export type EditUploadStreamMutationFn = Apollo.MutationFunction< EditUploadStreamMutation, EditUploadStreamMutationVariables >; /** * __useEditUploadStreamMutation__ * * To run a mutation, you first call `useEditUploadStreamMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useEditUploadStreamMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [editUploadStreamMutation, { data, loading, error }] = useEditUploadStreamMutation({ * variables: { * videoId: // value for 'videoId' * videoMetadataInput: // value for 'videoMetadataInput' * }, * }); */ export function useEditUploadStreamMutation( baseOptions?: Apollo.MutationHookOptions< EditUploadStreamMutation, EditUploadStreamMutationVariables >, ) { const options = { ...defaultOptions, ...baseOptions }; return Apollo.useMutation< EditUploadStreamMutation, EditUploadStreamMutationVariables >(EditUploadStreamDocument, options); } export type EditUploadStreamMutationHookResult = ReturnType< typeof useEditUploadStreamMutation >; export type EditUploadStreamMutationResult = Apollo.MutationResult; export type EditUploadStreamMutationOptions = Apollo.BaseMutationOptions< EditUploadStreamMutation, EditUploadStreamMutationVariables >;