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

merge_request.graphql « queries « mr_popover « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37d4bc88a69976fa4bc859a7c358db1cfde7a9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query mergeRequest($projectPath: ID!, $mergeRequestIID: String!) {
  project(fullPath: $projectPath) {
    mergeRequest(iid: $mergeRequestIID) {
      createdAt
      state
      headPipeline {
        detailedStatus {
          icon
          group
        }
      }
    }
  }
}