import { Field } from '@nestjs/graphql'; import { ArgsType } from '@nestjs/graphql'; import { CommentWhereInput } from './comment-where.input'; import { Type } from 'class-transformer'; @ArgsType() export class DeleteManyCommentArgs { @Field(() => CommentWhereInput, {nullable:true}) @Type(() => CommentWhereInput) where?: CommentWhereInput; }