mirror of
https://github.com/lingble/twenty.git
synced 2025-11-02 05:37:56 +00:00
30 lines
819 B
TypeScript
30 lines
819 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { CommentableType } from '../prisma/commentable-type.enum';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class CommentThreadTargetUncheckedCreateWithoutCommentThreadInput {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
id?: string;
|
|
|
|
@Field(() => CommentableType, {nullable:false})
|
|
commentableType!: keyof typeof CommentableType;
|
|
|
|
@Field(() => String, {nullable:false})
|
|
commentableId!: string;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
}
|