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

delete_pipeline.mutation.graphql « mutations « graphql « pipeline_details « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a52cecafcaf52eb2f8289fddd4b85bc07dec4186 (plain)
1
2
3
4
5
mutation deletePipeline($id: CiPipelineID!) {
  pipelineDestroy(input: { id: $id }) {
    errors
  }
}