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

View File

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