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