How can I use JIRA search to list all issues, in which the query issue custom field has NOT a certain entry?

Ralf Gamillscheg October 2, 2014

I used the JIRA search to search issues which have a certain entry in a "Query issue multi linker custom field":

issuetype=MyIssueType and "My Custom Query Field" = ReferencedIssue

This works.

I tried the following to list all issues which do not have the entry:

issuetype=MyIssueType and not "My Custom Query Field" = ReferencedIssue

This does not work. Furthermore, the operators "~" and "!~" (CONTAINS and NOT CONTAINS) are not supported by the issue type.

1 answer

1 vote
Andrey Markelov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 2, 2014

Hi Ralf, I am creator of this add-on. Try, please

issuetype=MyIssueType and "My Custom Query Field" != ReferencedIssue

-- Andrey

 

Ralf Gamillscheg October 2, 2014

I tried that, but in this case I don't get any issues. Although I am certain to have one, in which the issue is not referenced.

Suggest an answer

Log in or Sign up to answer