Rename pipeline schema (#184)
This commit is contained in:
@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user