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