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

job_unschedule.mutation.graphql « mutations « graphql « table « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8be8c42f3c304836adcdf00ec02c8d2026243ab9 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/job.fragment.graphql"

mutation unscheduleJob($id: CiBuildID!) {
  jobUnschedule(input: { id: $id }) {
    job {
      ...Job
    }
    errors
  }
}