Make tag classes optional

This commit is contained in:
Ivan Malison 2024-04-01 18:04:54 -06:00
parent 797ca3a387
commit 3bacc356af
2 changed files with 2 additions and 2 deletions

View File

@ -428,7 +428,7 @@ export type VideoTagClassInput = {
export type VideoTagInput = { export type VideoTagInput = {
name: Scalars["String"]["input"]; name: Scalars["String"]["input"];
tagClasses: Array<VideoTagClassInput>; tagClasses?: Array<VideoTagClassInput>;
}; };
export enum WallTypeEnum { export enum WallTypeEnum {

View File

@ -95,7 +95,7 @@ enum ShotDirectionEnum {
} }
input VideoTagInput { input VideoTagInput {
tagClasses: [VideoTagClassInput!]! tagClasses: [VideoTagClassInput!]! = []
name: String! name: String!
} }