Drop frame count from videl gql

This commit is contained in:
Kat Huang 2024-02-21 17:44:24 -07:00
parent 828140ed2b
commit 17aee8f220
2 changed files with 2 additions and 4 deletions

View File

@ -342,7 +342,7 @@ export type VideoGql = {
__typename?: 'VideoGQL';
averageTimeBetweenShots?: Maybe<Scalars['Float']['output']>;
createdAt: Scalars['DateTime']['output'];
elapsedTime: Scalars['Float']['output'];
elapsedTime?: Maybe<Scalars['Float']['output']>;
endTime: Scalars['DateTime']['output'];
framesPerSecond: Scalars['Int']['output'];
id: Scalars['Int']['output'];
@ -352,7 +352,6 @@ export type VideoGql = {
shots: Array<ShotGql>;
startTime: Scalars['DateTime']['output'];
stream?: Maybe<UploadStreamGql>;
totalFrames: Scalars['Int']['output'];
totalShots: Scalars['Int']['output'];
totalShotsMade: Scalars['Int']['output'];
updatedAt: Scalars['DateTime']['output'];

View File

@ -77,9 +77,8 @@ type VideoGQL {
shots: [ShotGQL!]!
startTime: DateTime!
endTime: DateTime!
elapsedTime: Float!
elapsedTime: Float
framesPerSecond: Int!
totalFrames: Int!
stream: UploadStreamGQL
}