I am trying to create a filter either using enhanced search or regular filter that for a specific project, for any open and future sprint includes any open epic and all open child issues for those open epics. I have this which gets all the issues but not the epics associated with them too.
So far this works but needs the epics as well to be returned
project = myproject AND sprint in futureSprints() OR sprint in openSprints () AND issuefunction in issuesInEpics("project = myproject") AND status in ("In Progress", "Ready ")
Hi @daniellar
You can try to modify your JQL query to include the Epics as well by using the "OR" operator and specifying the issue type as Epic. Here's an updated version of your query:
project = myproject AND (issuetype = Epic AND status in ("In Progress", "Ready ") OR issuefunction in issuesInEpics("project = myproject") AND status in ("In Progress", "Ready ")) AND (sprint in futureSprints() OR sprint in openSprints())
This should return both open Epics and their open linked child issues in the specified project for any open or future sprint.
Thanks this works great.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.