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

get_linked_pipelines.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: ee18c70b6fdb40af1e0d84ebd4ef56afede17aaf (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
query getLinkedPipelines($fullPath: ID!, $iid: ID!) {
  project(fullPath: $fullPath) {
    pipeline(iid: $iid) {
      path
      downstream {
        nodes {
          id
          path
          project {
            name
          }
          detailedStatus {
            group
            icon
            label
          }
        }
      }
      upstream {
        id
        path
        project {
          name
        }
        detailedStatus {
          group
          icon
          label
        }
      }
    }
  }
}