import { ArgsType, Field } from '@nestjs/graphql'; import { IsNotEmpty, IsString } from 'class-validator'; @ArgsType() export class ImpersonateInput { @Field(() => String) @IsNotEmpty() @IsString() userId: string; }