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

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