debian-mirror-gitlab/app/assets/javascripts/vue_merge_request_widget/extensions/issues.query.graphql
2022-01-26 12:08:38 +05:30

15 lines
200 B
GraphQL

query getAllIssues($projectPath: ID!) {
project(fullPath: $projectPath) {
id
issues {
nodes {
id
title
webPath
webUrl
state
}
}
}
}