I know you can change the order statuses are displayed by admin > issues > statuses and sort order but I'd prefer to order the results in my jql with certain statuses at the top and a specific order.
Is it possible to order how statuses appear in a query using JQL.
For example:
if you have the following status available:
- review,
- backlog,
- in development,
- testing,
- and Done
But you don't want to order them alphabetically can you define a customer order?
For example a JQL query for the custom order might be
ORDER BY Status ("review","backlog","in development").
In this case the statuses would show from top to bottom on the Y axis in this order ("review","backlog","in development")