12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
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;
|
|
}
|