Add average time field to video in feed operation #164

Merged
loewy merged 2 commits from loewy/add-average-time-per-shot-in-feed-operation into master 2025-03-11 14:42:25 -06:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit c561ea20ab - Show all commits

View File

@ -3048,6 +3048,7 @@ export type GetFeedQuery = {
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -3103,6 +3104,7 @@ export type VideoCardFieldsFragment = {
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -3161,6 +3163,7 @@ export type GetVideoFeedQuery = {
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -4830,6 +4833,7 @@ export const VideoCardFieldsFragmentDoc = gql`
totalShots
makePercentage
averageTimeBetweenShots
averageDifficulty
createdAt
updatedAt
startTime

View File

@ -28,6 +28,7 @@ fragment VideoCardFields on VideoGQL {
totalShots
makePercentage
averageTimeBetweenShots
averageDifficulty
createdAt
updatedAt
startTime