From 7de3d196ba7b4438bf8f6e286258d4a26931b1a2 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Thu, 15 Aug 2024 18:05:19 -0700 Subject: [PATCH] Add table size to return --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d55887f..0d54c58 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1487,6 +1487,7 @@ export type VideoGql = { shots: Array; startTime?: Maybe; stream?: Maybe; + tableSize: Scalars["Float"]["output"]; tags: Array; totalShots: Scalars["Int"]["output"]; totalShotsMade: Scalars["Int"]["output"]; diff --git a/src/schema.gql b/src/schema.gql index 4c081db..b5476db 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -253,6 +253,7 @@ type VideoGQL { endTime: DateTime elapsedTime: Float framesPerSecond: Float! + tableSize: Float! stream: UploadStreamGQL playlist: HLSPlaylistGQL tags: [VideoTag!]!