36 lines
808 B
TypeScript
36 lines
808 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ObjectType } from '@nestjs/graphql';
|
|
import * as Validator from 'class-validator';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@ObjectType()
|
|
export class CommentMinAggregate {
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
@Validator.IsOptional()
|
|
id?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
@Validator.IsString()
|
|
body?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
authorId?: string;
|
|
|
|
@Field(() => String, {nullable:true})
|
|
commentThreadId?: string;
|
|
|
|
@HideField()
|
|
workspaceId?: string;
|
|
|
|
@HideField()
|
|
deletedAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
createdAt?: Date | string;
|
|
|
|
@Field(() => Date, {nullable:true})
|
|
updatedAt?: Date | string;
|
|
}
|