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

get_latest_pipeline_status.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: 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
      }
    }
  }
}