Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cancel_pipeline.mutation.graphql « mutations « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9afb474cb17f7c7d3d364b3fa83bdd2f85137551 (plain)
1
2
3
4
5
mutation cancelPipeline($id: CiPipelineID!) {
  pipelineCancel(input: { id: $id }) {
    errors
  }
}