Skip to content

Add pipelineSchedulePlay mutation

What does this MR do and why?

Added pipelineSchedulePlay mutation.

Mutation Example

mutation PipelineSchedulePlay($input: PipelineSchedulePlayInput!) {
  pipelineSchedulePlay(input: $input) {
    errors # [String]: Array of error messages. Empty if the mutation is successful.
    success # Boolean: Specifies if mutation is success or not.
  }
}

input PipelineSchedulePlayInput {
  clientMutationId: String
  # ID of the pipeline schedule to mutate.
  id: CiPipelineScheduleID!
}

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #372129 (closed)

Edited by Batuhan Wilhelm

Merge request reports