debian-mirror-gitlab/app/assets/javascripts/vue_merge_request_widget/extensions/issues.query.graphql

15 lines
200 B
GraphQL
Raw Normal View History

2021-01-29 00:20:46 +05:30
query getAllIssues($projectPath: ID!) {
project(fullPath: $projectPath) {
2022-01-26 12:08:38 +05:30
id
2021-01-29 00:20:46 +05:30
issues {
nodes {
id
title
webPath
webUrl
state
}
}
}
}