import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { Int } from '@nestjs/graphql'; @InputType() export class ProfileWhereUniqueInput { @Field(() => Int, {nullable:true}) id?: number; @Field(() => String, {nullable:true}) userId?: string; }