import { Field } from '@nestjs/graphql'; import { ArgsType } from '@nestjs/graphql'; import { RefreshTokenWhereUniqueInput } from './refresh-token-where-unique.input'; import { Type } from 'class-transformer'; @ArgsType() export class FindUniqueRefreshTokenArgs { @Field(() => RefreshTokenWhereUniqueInput, { nullable: false }) @Type(() => RefreshTokenWhereUniqueInput) where!: RefreshTokenWhereUniqueInput; }