Files
twenty/server/src/core/@generated/pipeline-progress/pipeline-progress-where-unique.input.ts

13 lines
310 B
TypeScript

import { Field } from '@nestjs/graphql';
import { InputType } from '@nestjs/graphql';
import * as Validator from 'class-validator';
@InputType()
export class PipelineProgressWhereUniqueInput {
@Field(() => String, {nullable:true})
@Validator.IsString()
@Validator.IsOptional()
id?: string;
}