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

get_job.query.graphql « queries « 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: aaf1dec8e0fd7c493c9afb5c4049a19251f74aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query getJob($fullPath: ID!, $id: JobID!) {
  project(fullPath: $fullPath) {
    id
    job(id: $id) {
      id
      manualJob
      manualVariables {
        nodes {
          id
          key
          value
        }
      }
      name
    }
  }
}