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

get_pipeline_stages.query.graphql « queries « graphql « info « commit_box « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69a29947b1681ee6a5edc09eca87b7682f3a913d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query getPipelineStages($fullPath: ID!, $iid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $iid) {
      id
      stages {
        nodes {
          id
          name
          detailedStatus {
            id
            icon
            group
          }
        }
      }
    }
  }
}