import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class DummyMaxAggregateInput { @Field(() => Boolean, {nullable:true}) id?: true; @Field(() => Boolean, {nullable:true}) date?: true; @Field(() => Boolean, {nullable:true}) int?: true; @Field(() => Boolean, {nullable:true}) float?: true; @Field(() => Boolean, {nullable:true}) bytes?: true; @Field(() => Boolean, {nullable:true}) decimal?: true; @Field(() => Boolean, {nullable:true}) bigInt?: true; }