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

job_cancel.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: 20935514d51ff958463b89b9616ddca3770b9f0a (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/job.fragment.graphql"

mutation cancelJob($id: CiBuildID!) {
  jobCancel(input: { id: $id }) {
    job {
      ...Job
    }
    errors
  }
}