Files
twenty/server/src/core/@generated/person/delete-many-person.args.ts
T
2023-06-23 08:43:41 -07:00

13 lines
352 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;
}