import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class UserSumAggregateInput { @Field(() => Boolean, {nullable:true}) countComments?: true; @Field(() => Boolean, {nullable:true}) rating?: true; @Field(() => Boolean, {nullable:true}) money?: true; }