Files
twenty/server/src/api/@generated/pipeline-progress/find-unique-pipeline-progress-or-throw.args.ts
2023-06-02 12:39:58 +02:00

12 lines
448 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ArgsType } from '@nestjs/graphql';
import { PipelineProgressWhereUniqueInput } from './pipeline-progress-where-unique.input';
import { Type } from 'class-transformer';
@ArgsType()
export class FindUniquePipelineProgressOrThrowArgs {
@Field(() => PipelineProgressWhereUniqueInput, { nullable: false })
@Type(() => PipelineProgressWhereUniqueInput)
where!: PipelineProgressWhereUniqueInput;
}