I am trying to write a JQL query to list all bugs assigned to resolved epics. And I need to do without Script runner. The filter I have for resolved epics for a particular duration is
issuetype = epic AND status in ("In Progress", "Passed", Released) AND createdDate >= 2018-04-01 AND createdDate <= 2018-06-30
I now want to use the output from this query and filter for issueType=Bug
linked to them.
I tried options mentioned in this suggestion for allowing nested JQL calls https://jira.atlassian.com/browse/JRASERVER-21936 but no luck.
There's currently no way to do this with JQL without an add-on.