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

pipeline_stages_connection.fragment.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1da4fa0a72b19788b3dd8b7e970c73fcd3c3a0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
fragment PipelineStagesConnection on CiConfigStageConnection {
  nodes {
    name
    groups {
      nodes {
        name
        jobs {
          nodes {
            name
            needs {
              nodes {
                name
              }
            }
          }
        }
      }
    }
  }
}