summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/graphql/fragments/pipeline_stages_connection.fragment.graphql
blob: f93908aeb041eb604d6ab248e406ac0d213e70a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
fragment PipelineStagesConnection on CiConfigStageConnection {
  nodes {
    name
    groups {
      nodes {
        name
        size
        jobs {
          nodes {
            name
            script
            beforeScript
            afterScript
            environment
            allowFailure
            tags
            when
            only {
              refs
            }
            except {
              refs
            }
            needs {
              nodes {
                name
              }
            }
          }
        }
      }
    }
  }
}