Make tag classes optional
This commit is contained in:
parent
797ca3a387
commit
3bacc356af
@ -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 {
|
||||||
|
@ -95,7 +95,7 @@ enum ShotDirectionEnum {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input VideoTagInput {
|
input VideoTagInput {
|
||||||
tagClasses: [VideoTagClassInput!]!
|
tagClasses: [VideoTagClassInput!]! = []
|
||||||
name: String!
|
name: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user