summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/extensions/issues.query.graphql
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
      }
    }
  }
}