Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

create a filter that includes all of the open epics in a project with any open linked child issues

daniellar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 18, 2023

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 ")

1 answer

1 accepted

1 vote
Answer accepted
Oday Rafeh
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 18, 2023

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.

daniellar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 19, 2023

Thanks this works great.

Like Oday Rafeh likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events