import { ArgsType } from '@nestjs/graphql'; import { IsUUID } from 'class-validator'; @ArgsType() export class ListPipelineArgs { @IsUUID() projectId?: string; }