summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit_box/info/graphql/queries/get_latest_pipeline_status.query.graphql
blob: cec96f82336593544c8b67e94d863e67cc82f214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getLatestPipelineStatus($fullPath: ID!, $iid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $iid) {
      id
      detailedStatus {
        id
        detailsPath
        icon
        group
      }
    }
  }
}