summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/table/graphql/mutations/job_unschedule.mutation.graphql
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
  }
}