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

pipeline.graphql « client « queries « graphql « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cc7f92fb602eb11f144d829d3e03786ea2fed06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query getPipeline($fullPath: ID!, $sha: String!) {
  project(fullPath: $fullPath) @client {
    pipeline(sha: $sha) {
      commitPath
      id
      iid
      shortSha
      status
      detailedStatus {
        detailsPath
        icon
        group
        text
      }
    }
  }
}