import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class CommentThreadTargetMinAggregateInput { @Field(() => Boolean, { nullable: true }) id?: true; @Field(() => Boolean, { nullable: true }) createdAt?: true; @Field(() => Boolean, { nullable: true }) updatedAt?: true; @Field(() => Boolean, { nullable: true }) deletedAt?: true; @Field(() => Boolean, { nullable: true }) commentThreadId?: true; @Field(() => Boolean, { nullable: true }) commentableType?: true; @Field(() => Boolean, { nullable: true }) commentableId?: true; }