From ec58923c656e6554476c25f4628b5eee5955e78d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 7 Nov 2024 16:29:33 -0700 Subject: [PATCH] Add id to homography info gql --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 00a20d4..dab22a7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1944,6 +1944,7 @@ export type HomographyInfoGql = { crop: BoundingBoxGql; destPoints: PocketPointsGql; frameIndex: Scalars["Int"]["output"]; + id: Scalars["Int"]["output"]; pockets: Array; sourcePoints: PocketPointsGql; }; diff --git a/src/schema.gql b/src/schema.gql index b1f9706..6744342 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -509,6 +509,7 @@ type VideoTagClass { } type HomographyInfoGQL { + id: Int! frameIndex: Int! crop: BoundingBoxGQL! pockets: [BoundingBoxGQL!]!