Files
twenty/server/src/core/@generated/comment-thread/comment-thread-where-unique.input.ts
T

13 lines
307 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import * as Validator from 'class-validator';
@InputType()
export class CommentThreadWhereUniqueInput {
@Field(() => String, {nullable:true})
@Validator.IsString()
@Validator.IsOptional()
id?: string;
}