From 17aee8f2207d38b0cde2e151bf772ef0f8c3a7c6 Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Wed, 21 Feb 2024 17:44:24 -0700 Subject: [PATCH] Drop frame count from videl gql --- src/index.tsx | 3 +-- src/schema.gql | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 8fdf86e..811f0c4 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -342,7 +342,7 @@ export type VideoGql = { __typename?: 'VideoGQL'; averageTimeBetweenShots?: Maybe; createdAt: Scalars['DateTime']['output']; - elapsedTime: Scalars['Float']['output']; + elapsedTime?: Maybe; endTime: Scalars['DateTime']['output']; framesPerSecond: Scalars['Int']['output']; id: Scalars['Int']['output']; @@ -352,7 +352,6 @@ export type VideoGql = { shots: Array; startTime: Scalars['DateTime']['output']; stream?: Maybe; - totalFrames: Scalars['Int']['output']; totalShots: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output']; updatedAt: Scalars['DateTime']['output']; diff --git a/src/schema.gql b/src/schema.gql index 2537d4c..81d8a35 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -77,9 +77,8 @@ type VideoGQL { shots: [ShotGQL!]! startTime: DateTime! endTime: DateTime! - elapsedTime: Float! + elapsedTime: Float framesPerSecond: Int! - totalFrames: Int! stream: UploadStreamGQL }