mirror of
https://github.com/lingble/twenty.git
synced 2025-11-02 13:47:55 +00:00
29 lines
644 B
TypeScript
29 lines
644 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class CommentThreadTargetMaxAggregateInput {
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
id?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
commentThreadId?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
commentableType?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
commentableId?: true;
|
|
|
|
@HideField()
|
|
deletedAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
createdAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
updatedAt?: true;
|
|
}
|