add tableSize to operations for getVideo
All checks were successful
Tests / Tests (pull_request) Successful in 14s
All checks were successful
Tests / Tests (pull_request) Successful in 14s
This commit is contained in:
parent
a2b912500c
commit
f20ca53a2a
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user