Implement scoping on be (#144)
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
import { Field } from '@nestjs/graphql';
|
||||
import { InputType } from '@nestjs/graphql';
|
||||
|
||||
@InputType()
|
||||
export class NullableDateTimeFieldUpdateOperationsInput {
|
||||
|
||||
@Field(() => Date, {nullable:true})
|
||||
set?: Date | string;
|
||||
}
|
||||
Reference in New Issue
Block a user