Files
fennec-be/src/repos/dtos/list-logs.args.ts
2021-02-28 21:51:52 +08:00

13 lines
236 B
TypeScript

import { InputType } from '@nestjs/graphql';
import { IsOptional, IsString, IsUUID } from 'class-validator';
@InputType()
export class ListLogsArgs {
@IsUUID()
projectId: string;
@IsString()
@IsOptional()
branch?: string;
}