31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { HideField } from '@nestjs/graphql';
|
|
import { CommentCreateNestedManyWithoutCommentThreadInput } from '../comment/comment-create-nested-many-without-comment-thread.input';
|
|
import { WorkspaceCreateNestedOneWithoutCommentThreadsInput } from '../workspace/workspace-create-nested-one-without-comment-threads.input';
|
|
|
|
@InputType()
|
|
export class CommentThreadCreateWithoutCommentThreadTargetsInput {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
id?: string;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
|
|
@Field(() => CommentCreateNestedManyWithoutCommentThreadInput, {nullable:true})
|
|
comments?: CommentCreateNestedManyWithoutCommentThreadInput;
|
|
|
|
@HideField()
|
|
workspace!: WorkspaceCreateNestedOneWithoutCommentThreadsInput;
|
|
}
|