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