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

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

mutation retryJob($id: CiBuildID!) {
  jobRetry(input: { id: $id }) {
    job {
      ...Job
    }
    errors
  }
}