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

merge_request.query.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: b3e5d89d4953a8314e9c226e95b34d75ab6875b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query mergeRequest($projectPath: ID!, $mergeRequestIID: String!) {
  project(fullPath: $projectPath) {
    id
    mergeRequest(iid: $mergeRequestIID) {
      id
      title
      createdAt
      state
      headPipeline {
        id
        detailedStatus {
          id
          icon
          group
        }
      }
    }
  }
}