import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { StringWithAggregatesFilter } from '../prisma/string-with-aggregates-filter.input'; @InputType() export class TagScalarWhereWithAggregatesInput { @Field(() => [TagScalarWhereWithAggregatesInput], {nullable:true}) AND?: Array; @Field(() => [TagScalarWhereWithAggregatesInput], {nullable:true}) OR?: Array; @Field(() => [TagScalarWhereWithAggregatesInput], {nullable:true}) NOT?: Array; @Field(() => StringWithAggregatesFilter, {nullable:true}) id?: StringWithAggregatesFilter; @Field(() => StringWithAggregatesFilter, {nullable:true}) name?: StringWithAggregatesFilter; }