10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class NullableDateTimeFieldUpdateOperationsInput {
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
set?: Date | string;
|
|
}
|