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

job_retry_with_variables.mutation.graphql « mutations « graphql « job « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b79892a07251271bbefec7e5584ceba2c06677b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mutation retryJobWithVariables($id: CiBuildID!, $variables: [CiVariableInput!]) {
  jobRetry(input: { id: $id, variables: $variables }) {
    job {
      id
      manualVariables {
        nodes {
          id
          key
          value
        }
      }
      webPath
    }
    errors
  }
}