10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { InputType, OmitType } from '@nestjs/graphql';
|
|
import { CreatePipelineInput } from './create-pipeline.input';
|
|
|
|
@InputType()
|
|
export class UpdatePipelineInput extends OmitType(CreatePipelineInput, [
|
|
'projectId',
|
|
]) {
|
|
id: string;
|
|
}
|