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

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

mutation playJobWithVariables($id: CiBuildID!, $variables: [CiVariableInput!]) {
  jobPlay(input: { id: $id, variables: $variables }) {
    job {
      ...BaseCiJob
      webPath
    }
    errors
  }
}