import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { CommentCreateWithoutArticleInput } from './comment-create-without-article.input'; import { Type } from 'class-transformer'; import { CommentCreateOrConnectWithoutArticleInput } from './comment-create-or-connect-without-article.input'; import { CommentUpsertWithWhereUniqueWithoutArticleInput } from './comment-upsert-with-where-unique-without-article.input'; import { CommentCreateManyArticleInputEnvelope } from './comment-create-many-article-input-envelope.input'; import { CommentWhereUniqueInput } from './comment-where-unique.input'; import { CommentUpdateWithWhereUniqueWithoutArticleInput } from './comment-update-with-where-unique-without-article.input'; import { CommentUpdateManyWithWhereWithoutArticleInput } from './comment-update-many-with-where-without-article.input'; import { CommentScalarWhereInput } from './comment-scalar-where.input'; @InputType() export class CommentUncheckedUpdateManyWithoutArticleNestedInput { @Field(() => [CommentCreateWithoutArticleInput], {nullable:true}) @Type(() => CommentCreateWithoutArticleInput) create?: Array; @Field(() => [CommentCreateOrConnectWithoutArticleInput], {nullable:true}) @Type(() => CommentCreateOrConnectWithoutArticleInput) connectOrCreate?: Array; @Field(() => [CommentUpsertWithWhereUniqueWithoutArticleInput], {nullable:true}) @Type(() => CommentUpsertWithWhereUniqueWithoutArticleInput) upsert?: Array; @Field(() => CommentCreateManyArticleInputEnvelope, {nullable:true}) @Type(() => CommentCreateManyArticleInputEnvelope) createMany?: CommentCreateManyArticleInputEnvelope; @Field(() => [CommentWhereUniqueInput], {nullable:true}) @Type(() => CommentWhereUniqueInput) set?: Array; @Field(() => [CommentWhereUniqueInput], {nullable:true}) @Type(() => CommentWhereUniqueInput) disconnect?: Array; @Field(() => [CommentWhereUniqueInput], {nullable:true}) @Type(() => CommentWhereUniqueInput) delete?: Array; @Field(() => [CommentWhereUniqueInput], {nullable:true}) @Type(() => CommentWhereUniqueInput) connect?: Array; @Field(() => [CommentUpdateWithWhereUniqueWithoutArticleInput], {nullable:true}) @Type(() => CommentUpdateWithWhereUniqueWithoutArticleInput) update?: Array; @Field(() => [CommentUpdateManyWithWhereWithoutArticleInput], {nullable:true}) @Type(() => CommentUpdateManyWithWhereWithoutArticleInput) updateMany?: Array; @Field(() => [CommentScalarWhereInput], {nullable:true}) @Type(() => CommentScalarWhereInput) deleteMany?: Array; }