8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import { InputType } from '@nestjs/graphql';
|
|
import { CreatePipelineInput } from './create-pipeline.input';
|
|
|
|
@InputType()
|
|
export class UpdatePipelineInput extends CreatePipelineInput {
|
|
id: string;
|
|
}
|