How to exclude multiple status values when listing issues? #159
-
ContextAll of the following applies to: jira issue list --status ~Donewill show issues that are in any other status than Comma separationjira issue list --status ~Done,Closedwill return an error: (also, it will apparently change terminal settings: the blinking cursor is no longer seen in the GNOME terminal emulator unless you execute Multiple valuesjira issue list --status ~Done --status ~Closedwill not return an error but many (or all?) of the issues listed will have status SummaryIs there a way to exclude multiple status values when filtering? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
The status option only accepts a single value at the moment. However, you can use a raw query to achieve what you want. // All issues except the one in `Done` and `Open`
$ jira issue list -q "status not in (Done, Open)"TBH, I think it would be nice if |
Beta Was this translation helpful? Give feedback.
-
Regarding this, could you please open a new discussion/issue with more details. |
Beta Was this translation helpful? Give feedback.
The status option only accepts a single value at the moment. However, you can use a raw query to achieve what you want.
TBH, I think it would be nice if
statuswould accept multiple status. I am open for discussion (and a PR :) ) on that part.