From 32d8cb0d41737a3db56a06d53d52a26905417bea Mon Sep 17 00:00:00 2001 From: Loewy Date: Fri, 7 Mar 2025 16:16:42 -0800 Subject: [PATCH] add average diff in videogql --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index cfd8494..a4213be 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2883,6 +2883,7 @@ export type VideoFilterInput = { export type VideoGql = { __typename?: "VideoGQL"; + averageDifficulty?: Maybe; averageTimeBetweenShots?: Maybe; createdAt?: Maybe; currentHomography?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index 4072a73..7cdc102 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -462,6 +462,7 @@ type VideoGQL { makePercentage: Float! medianRun: Float averageTimeBetweenShots: Float + averageDifficulty: Float createdAt: DateTime updatedAt: DateTime shots: [ShotGQL!]! -- 2.47.2