import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class NestedBigIntNullableFilter { @Field(() => String, {nullable:true}) equals?: bigint | number; @Field(() => [String], {nullable:true}) in?: Array | Array; @Field(() => [String], {nullable:true}) notIn?: Array | Array; @Field(() => String, {nullable:true}) lt?: bigint | number; @Field(() => String, {nullable:true}) lte?: bigint | number; @Field(() => String, {nullable:true}) gt?: bigint | number; @Field(() => String, {nullable:true}) gte?: bigint | number; @Field(() => NestedBigIntNullableFilter, {nullable:true}) not?: NestedBigIntNullableFilter; }