-
Type:
Suggestion
-
Resolution: Timed out
-
Component/s: Space - List
-
1
Issue Summary
parentEpic searches for issues and sub-tasks that are linked to an epic. However it only supports operators such as = , != , IN , NOT IN.
We would like to see support for the following operators in parentEpic(): IS , IS NOT , IN , NOT IN , WAS, WAS IN, WAS NOT, WAS NOT IN , CHANGED in future updates.
Expected Results
This query with parentEpic IS NOT EMPTY to work properly
type IN standardIssueTypes() and parentEpic IS NOT EMPTY
Actual Results
IS NOT operator is not supported with parentEpic

Workaround
However, we have a workaround where you can use the JQL function `parent` to search for all issues. The JQL query mentioned below helps you retrieve the parent issues of all standard issue types, such as Task, Bug, Story, etc.
type IN standardIssueTypes() AND parent IS NOT EMPTY