summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/extensions/issues.query.graphql
blob: 690f571c083830fd6bbf21192cbf312ce9f9486b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getAllIssues($projectPath: ID!) {
  project(fullPath: $projectPath) {
    issues {
      nodes {
        id
        title
        webPath
        webUrl
        state
      }
    }
  }
}