Hi!
I am trying to query program epics that have a target end date that ends earlier than the target end of their child issues. At the moment I have a query that is like this:
issuetype = "Program Epic" AND status not in (done, cancelled) AND "Target end" < now() AND issueFunction in linkedIssuesOf('"target end" > now()') and issueFunction in hasLinkType("parent-child link")
Obviously this query only shows program epics that have expired, AND with child issues have have yet to expire. I want to bring it to the next level to show even the program epics that have yet to expire. Any help will be appreciated.