add tableSize to operations for getVideo
All checks were successful
Tests / Tests (pull_request) Successful in 14s

This commit is contained in:
Loewy 2024-08-15 18:51:36 -07:00
parent a2b912500c
commit f20ca53a2a
2 changed files with 6 additions and 0 deletions

View File

@ -1863,6 +1863,7 @@ export type GetVideoUpdatePageDetailsQuery = {
totalShots: number;
makePercentage: number;
elapsedTime?: number | null;
tableSize: number;
tags: Array<{
__typename?: "VideoTag";
name: string;
@ -1901,6 +1902,7 @@ export type GetVideoDetailsQuery = {
totalShotsMade: number;
createdAt?: any | null;
updatedAt?: any | null;
tableSize: number;
owner?: {
__typename?: "UserGQL";
id: number;
@ -3196,6 +3198,7 @@ export const GetVideoUpdatePageDetailsDocument = gql`
totalShots
makePercentage
elapsedTime
tableSize
tags {
tagClasses {
name
@ -3335,6 +3338,7 @@ export const GetVideoDetailsDocument = gql`
totalShotsMade
createdAt
updatedAt
tableSize
owner {
id
firebaseUid

View File

@ -70,6 +70,7 @@ query GetVideoUpdatePageDetails($videoId: Int!) {
totalShots
makePercentage
elapsedTime
tableSize
tags {
tagClasses {
name
@ -98,6 +99,7 @@ query GetVideoDetails($videoId: Int!) {
totalShotsMade
createdAt
updatedAt
tableSize
owner {
id
firebaseUid