9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class BoolFieldUpdateOperationsInput {
|
|
@Field(() => Boolean, { nullable: true })
|
|
set?: boolean;
|
|
}
|