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

sidebar_details_mr.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0505f88773dec64992ffaee1edc9d713e879cb0c (plain)
1
2
3
4
5
6
7
8
9
query mergeRequestSidebarDetails($fullPath: ID!, $iid: String!) {
  project(fullPath: $fullPath) {
    id
    mergeRequest(iid: $iid) {
      id
      iid # currently unused.
    }
  }
}