13 lines
340 B
TypeScript
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;
|
|
}
|