add average diff in videogql
All checks were successful
Tests / Tests (pull_request) Successful in 20s

This commit is contained in:
Loewy 2025-03-07 16:16:42 -08:00
parent 9d912ed21e
commit 32d8cb0d41
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!]!