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: da1cace45981345c498f90025aaa5d960bb437ea (plain)
1
2
3
4
5
6
7
query getProjectIssues($projectPath: ID!) {
  project(fullPath: $projectPath) {
    issues {
      count
    }
  }
}