Elapsed time in seconds

This commit is contained in:
Kat Huang 2024-02-22 17:55:37 -07:00
parent 6a1807efc8
commit 48e2bec9ce

View File

@ -341,20 +341,20 @@ export type VideoFeedGql = {
export type VideoGql = { export type VideoGql = {
__typename?: 'VideoGQL'; __typename?: 'VideoGQL';
averageTimeBetweenShots?: Maybe<Scalars['Float']['output']>; averageTimeBetweenShots?: Maybe<Scalars['Float']['output']>;
createdAt: Scalars['DateTime']['output']; createdAt?: Maybe<Scalars['DateTime']['output']>;
elapsedTime?: Maybe<Scalars['Float']['output']>; elapsedTime?: Maybe<Scalars['Float']['output']>;
endTime: Scalars['DateTime']['output']; endTime?: Maybe<Scalars['DateTime']['output']>;
framesPerSecond: Scalars['Int']['output']; framesPerSecond: Scalars['Int']['output'];
id: Scalars['Int']['output']; id: Scalars['Int']['output'];
makePercentage: Scalars['Float']['output']; makePercentage: Scalars['Float']['output'];
medianRun?: Maybe<Scalars['Float']['output']>; medianRun?: Maybe<Scalars['Float']['output']>;
name?: Maybe<Scalars['String']['output']>; name?: Maybe<Scalars['String']['output']>;
shots: Array<ShotGql>; shots: Array<ShotGql>;
startTime: Scalars['DateTime']['output']; startTime?: Maybe<Scalars['DateTime']['output']>;
stream?: Maybe<UploadStreamGql>; stream?: Maybe<UploadStreamGql>;
totalShots: Scalars['Int']['output']; totalShots: Scalars['Int']['output'];
totalShotsMade: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output'];
updatedAt: Scalars['DateTime']['output']; updatedAt?: Maybe<Scalars['DateTime']['output']>;
}; };
export enum WallTypeEnum { export enum WallTypeEnum {
@ -375,7 +375,7 @@ export type GetFeedQueryVariables = Exact<{
}>; }>;
export type GetFeedQuery = { __typename?: 'Query', getVideoFeedForUser: { __typename?: 'VideoFeedGQL', videos: Array<{ __typename?: 'VideoGQL', id: number, name?: string | null, totalShotsMade: number, totalShots: number, makePercentage: number, medianRun?: number | null, averageTimeBetweenShots?: number | null, createdAt: any, updatedAt: any, startTime: any, endTime: any, elapsedTime?: number | null, shots: Array<{ __typename?: 'ShotGQL', id?: number | null, videoId?: number | null, startFrame?: number | null, endFrame?: number | null, createdAt?: any | null, updatedAt?: any | null }>, stream?: { __typename?: 'UploadStreamGQL', id: string, linksRequested: number, uploadsCompleted: number, isCompleted: boolean, createdAt: any, updatedAt: any } | null }>, pageInfo: { __typename?: 'PageInfoGQL', hasNextPage: boolean, endCursor?: string | null } } }; export type GetFeedQuery = { __typename?: 'Query', getVideoFeedForUser: { __typename?: 'VideoFeedGQL', videos: Array<{ __typename?: 'VideoGQL', id: number, name?: string | null, totalShotsMade: number, totalShots: number, makePercentage: number, medianRun?: number | null, averageTimeBetweenShots?: number | null, createdAt?: any | null, updatedAt?: any | null, startTime?: any | null, endTime?: any | null, elapsedTime?: number | null, shots: Array<{ __typename?: 'ShotGQL', id?: number | null, videoId?: number | null, startFrame?: number | null, endFrame?: number | null, createdAt?: any | null, updatedAt?: any | null }>, stream?: { __typename?: 'UploadStreamGQL', id: string, linksRequested: number, uploadsCompleted: number, isCompleted: boolean, createdAt: any, updatedAt: any } | null }>, pageInfo: { __typename?: 'PageInfoGQL', hasNextPage: boolean, endCursor?: string | null } } };
export type GetShotsQueryVariables = Exact<{ export type GetShotsQueryVariables = Exact<{
filterInput?: InputMaybe<FilterInput>; filterInput?: InputMaybe<FilterInput>;