Rename pipeline schema (#184)

This commit is contained in:
Charles Bochet
2023-06-02 12:39:58 +02:00
committed by GitHub
parent 0609994477
commit f23bbb9a68
132 changed files with 2825 additions and 138 deletions

View File

@ -0,0 +1,11 @@
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;
}