Files
twenty/server/src/core/@generated/comment/comment-thread-count.output.ts
T
2023-06-23 08:43:41 -07:00

14 lines
317 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ObjectType } from '@nestjs/graphql';
import { Int } from '@nestjs/graphql';
@ObjectType()
export class CommentThreadCount {
@Field(() => Int, {nullable:false})
commentThreadTargets?: number;
@Field(() => Int, {nullable:false})
comments?: number;
}