I would like to filter for all epics which are not duplicates, no matter what status they are in. Now when I create this query
project = xyz AND issuetype = Epic and resolution = Duplicate
I get the 1 epic which has been resolved as a duplicate.
However, if I now invert the resolution and search for
project = xyzAND issuetype = Epic and resolution != Duplicate
I get "No issues were found to match your search"
I don't get it...
Hello Martin,
The Not equals operator (!=) excludes results with empty values, so the query that you have created will return only the issues that have a valid resolution that it's not empty (Unresolved) and is not Duplicate.
This is an intended behavior of JIRA, as you can check in the feature request below:
Not equals operator (!=) excludes results with empty values
Please, feel free to vote in the suggestion if you would like to change this behavior.
For now, you can configure the following query to return ALL Epics that are not with Resolution Duplicated:
project = xyzAND issuetype = Epic and (resolution != Duplicate or resolution is empty)
Thanks a lot, Goncalves! I was suspecting that it had something to do with "empty", but did not manage to get the syntax right.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, Härri!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.