21 lines
846 B
TypeScript
21 lines
846 B
TypeScript
import { Field } from '@nestjs/graphql';
|
|
import { ArgsType } from '@nestjs/graphql';
|
|
import { PipelineProgressUpdateManyMutationInput } from './pipeline-progress-update-many-mutation.input';
|
|
import { Type } from 'class-transformer';
|
|
import { ValidateNested } from 'class-validator';
|
|
import { PipelineProgressWhereInput } from './pipeline-progress-where.input';
|
|
|
|
@ArgsType()
|
|
export class UpdateManyPipelineProgressArgs {
|
|
|
|
@Field(() => PipelineProgressUpdateManyMutationInput, {nullable:false})
|
|
@Type(() => PipelineProgressUpdateManyMutationInput)
|
|
@Type(() => PipelineProgressUpdateManyMutationInput)
|
|
@ValidateNested({each: true})
|
|
data!: PipelineProgressUpdateManyMutationInput;
|
|
|
|
@Field(() => PipelineProgressWhereInput, {nullable:true})
|
|
@Type(() => PipelineProgressWhereInput)
|
|
where?: PipelineProgressWhereInput;
|
|
}
|