Allow sorting issues by blocking issues in GraphQL API
Summary
The issue list can be sorted by blocking issues. We should add the ability to do this to the GraphQL API.
There are some sort options already available, e.g. UPDATED_DESC.
This update should enable the following queries:
query {
project(fullPath: "gitlab-org/gitlab") {
issues (sort: BLOCKING_ISSUES_ASC) {
count
}
}
}
query {
project(fullPath: "gitlab-org/gitlab") {
issues (sort: BLOCKING_ISSUES_DESC) {
count
}
}
}
See #326474 (closed)
Edited by John Hope