summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/client/pipeline.graphql
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
      }
    }
  }
}