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

sidebar_details.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: 90d1a7794eaf231f9f5b7b6097b28d859171f725 (plain)
1
2
3
4
5
6
7
8
9
query sidebarDetails($fullPath: ID!, $iid: String!) {
  project(fullPath: $fullPath) {
    id
    issue(iid: $iid) {
      id
      iid
    }
  }
}