-
Bug
-
Resolution: Fixed
-
High
-
6
-
Severity 3 - Minor
-
1
-
Issue Summary
When filtering issues by issueLinkType the results are inconsistent when using the != and NOT IN operators when weblinks are part of issueLinkType.
Steps to Reproduce
- create a project, BUG
- create two issues BUG-1, BUG-2
- link BUG-1 to BUG-2, i.e. BUG-1 blocks BUG-2
- search with JQL - project = BUG and issueLinkType != clones, both issues are listed
- now add a ‘weblink’ to BUG-1
- repeat the query, now BUG-1 is not returned while BUG-2 is still there.
Expected Results
The != or NOT IN operators should return the difference between the first and second queries.
Actual Results
There is not output with the results.
Workaround
If the linktype has the weblinks in it, instead of using
issueLinkType != "link_type_name"
We can use the below JQL to fetch the data that should include all the linktypes except the one isn't required:
issueLinkType in ("link_type_name1", "link_type_name2", "link_type_name3" ...)
- relates to
-
JRACLOUD-73640 JQL issueLinkType is inconsistent when using != or NOT IN operators
- Closed