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

delete_pipeline_schedule.mutation.graphql « mutations « graphql « pipeline_schedules « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8aab0b3fbde6efd749715034b218fbb7efbfc30d (plain)
1
2
3
4
5
6
mutation deletePipelineSchedule($id: CiPipelineScheduleID!) {
  pipelineScheduleDelete(input: { id: $id }) {
    clientMutationId
    errors
  }
}