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