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