mirror of
https://github.com/lingble/twenty.git
synced 2025-10-29 20:02:29 +00:00
26 lines
555 B
TypeScript
26 lines
555 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { InputType } from '@nestjs/graphql';
|
|
import { HideField } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class CommentThreadCountAggregateInput {
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
id?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
createdAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
updatedAt?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
deletedAt?: true;
|
|
|
|
@HideField()
|
|
workspaceId?: true;
|
|
|
|
@Field(() => Boolean, {nullable:true})
|
|
_all?: true;
|
|
}
|