From 3bacc356af07c2378d84e73b28eeff913bdedffb Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 1 Apr 2024 18:04:54 -0600 Subject: [PATCH] Make tag classes optional --- src/index.tsx | 2 +- src/schema.gql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index c84f5b3..86787db 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -428,7 +428,7 @@ export type VideoTagClassInput = { export type VideoTagInput = { name: Scalars["String"]["input"]; - tagClasses: Array; + tagClasses?: Array; }; export enum WallTypeEnum { diff --git a/src/schema.gql b/src/schema.gql index 8041a95..45d6cfd 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -95,7 +95,7 @@ enum ShotDirectionEnum { } input VideoTagInput { - tagClasses: [VideoTagClassInput!]! + tagClasses: [VideoTagClassInput!]! = [] name: String! }