summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/client/pipeline.graphql
blob: d3a7387ad2dc4d3a3163f782a05c0fea40fff2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query getPipeline($fullPath: ID!, $sha: String!) {
  project(fullPath: $fullPath) {
    pipeline(sha: $sha) {
      commitPath
      id
      iid
      status
      detailedStatus {
        detailsPath
        icon
        group
        text
      }
    }
  }
}