Files
twenty/server/src/api/@generated/prisma/nullable-date-time-field-update-operations.input.ts
2023-05-26 14:00:32 +02:00

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