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

sidebarDetailsMR.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: 02498b188323d073ca287893b38457445763b371 (plain)
1
2
3
4
5
6
7
query mergeRequestSidebarDetails($fullPath: ID!, $iid: String!) {
  project(fullPath: $fullPath) {
    mergeRequest(iid: $iid) {
      iid # currently unused.
    }
  }
}