Add average difficulty in VideoGql #163

Merged
countablecloud merged 1 commits from loewy/average-difficulty-in-video-gql into master 2025-03-07 17:18:37 -07:00
2 changed files with 2 additions and 0 deletions

View File

@ -2883,6 +2883,7 @@ export type VideoFilterInput = {
export type VideoGql = {
__typename?: "VideoGQL";
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
averageTimeBetweenShots?: Maybe<Scalars["Float"]["output"]>;
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
currentHomography?: Maybe<HomographyInfoGql>;

View File

@ -462,6 +462,7 @@ type VideoGQL {
makePercentage: Float!
medianRun: Float
averageTimeBetweenShots: Float
averageDifficulty: Float
createdAt: DateTime
updatedAt: DateTime
shots: [ShotGQL!]!