12 lines
448 B
TypeScript
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;
|
|
}
|