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

13 lines
340 B
TypeScript

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;
}