import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { TagCreateWithoutArticlesInput } from './tag-create-without-articles.input'; import { Type } from 'class-transformer'; import { TagCreateOrConnectWithoutArticlesInput } from './tag-create-or-connect-without-articles.input'; import { TagUpsertWithWhereUniqueWithoutArticlesInput } from './tag-upsert-with-where-unique-without-articles.input'; import { TagWhereUniqueInput } from './tag-where-unique.input'; import { TagUpdateWithWhereUniqueWithoutArticlesInput } from './tag-update-with-where-unique-without-articles.input'; import { TagUpdateManyWithWhereWithoutArticlesInput } from './tag-update-many-with-where-without-articles.input'; import { TagScalarWhereInput } from './tag-scalar-where.input'; @InputType() export class TagUpdateManyWithoutArticlesNestedInput { @Field(() => [TagCreateWithoutArticlesInput], {nullable:true}) @Type(() => TagCreateWithoutArticlesInput) create?: Array; @Field(() => [TagCreateOrConnectWithoutArticlesInput], {nullable:true}) @Type(() => TagCreateOrConnectWithoutArticlesInput) connectOrCreate?: Array; @Field(() => [TagUpsertWithWhereUniqueWithoutArticlesInput], {nullable:true}) @Type(() => TagUpsertWithWhereUniqueWithoutArticlesInput) upsert?: Array; @Field(() => [TagWhereUniqueInput], {nullable:true}) @Type(() => TagWhereUniqueInput) set?: Array; @Field(() => [TagWhereUniqueInput], {nullable:true}) @Type(() => TagWhereUniqueInput) disconnect?: Array; @Field(() => [TagWhereUniqueInput], {nullable:true}) @Type(() => TagWhereUniqueInput) delete?: Array; @Field(() => [TagWhereUniqueInput], {nullable:true}) @Type(() => TagWhereUniqueInput) connect?: Array; @Field(() => [TagUpdateWithWhereUniqueWithoutArticlesInput], {nullable:true}) @Type(() => TagUpdateWithWhereUniqueWithoutArticlesInput) update?: Array; @Field(() => [TagUpdateManyWithWhereWithoutArticlesInput], {nullable:true}) @Type(() => TagUpdateManyWithWhereWithoutArticlesInput) updateMany?: Array; @Field(() => [TagScalarWhereInput], {nullable:true}) @Type(() => TagScalarWhereInput) deleteMany?: Array; }