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

issues_collapsed.query.graphql « extensions « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 389a81e0a618d0c0f6166113da524f41705d910a (plain)
1
2
3
4
5
6
7
query getIssues($projectPath: ID!) {
  project(fullPath: $projectPath) {
    issues {
      count
    }
  }
}