Hello together,
I am trying to create a Query for a general filter for our project and I try to find Epics which have a later due date or target end date (latter is a custom field) than the linked Saga.
I know that I can see that quickly in the Roadmap in the warnings as "Ends after Parent" and "Starts before parent" but is it possible to see those issues through a filter?
I tried a lot so far and couldn't create anything or mostly errors.
Queries I tried where e.g.
project = PO AND issuetype = Saga AND "Target end" < issueFunction in parentsOf("project=PO AND issuetype = Epic")
Or
project in (PO) AND issuetype = Saga AND status not in (closed, resolved) AND "Target end" < now() and issueFunction in linkedIssuesOf("Target end > now()") and issueFunction in hasLinkType("Parent-Child Link")
Or are there perhaps better and easier ideas?