import { Field } from '@nestjs/graphql'; import { ArgsType } from '@nestjs/graphql'; import { ProfileWhereInput } from './profile-where.input'; import { Type } from 'class-transformer'; import { ProfileOrderByWithRelationAndSearchRelevanceInput } from './profile-order-by-with-relation-and-search-relevance.input'; import { ProfileWhereUniqueInput } from './profile-where-unique.input'; import { Int } from '@nestjs/graphql'; import { ProfileScalarFieldEnum } from './profile-scalar-field.enum'; @ArgsType() export class FindFirstProfileArgs { @Field(() => ProfileWhereInput, {nullable:true}) @Type(() => ProfileWhereInput) where?: ProfileWhereInput; @Field(() => [ProfileOrderByWithRelationAndSearchRelevanceInput], {nullable:true}) orderBy?: Array; @Field(() => ProfileWhereUniqueInput, {nullable:true}) cursor?: ProfileWhereUniqueInput; @Field(() => Int, {nullable:true}) take?: number; @Field(() => Int, {nullable:true}) skip?: number; @Field(() => [ProfileScalarFieldEnum], {nullable:true}) distinct?: Array; }