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

issues.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: 5c54560bd02003a200cee161061668875bb0b2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getAllIssues($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    issues {
      nodes {
        id
        title
        webPath
        webUrl
        state
      }
    }
  }
}