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