import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class TagCountAggregateInput { @Field(() => Boolean, {nullable:true}) id?: true; @Field(() => Boolean, {nullable:true}) name?: true; @Field(() => Boolean, {nullable:true}) _all?: true; }