Is there a way to create a filter where we remove specific epics and all children under neath the parent in the filter.
I don't think this has anything to do with deleting a filter. I think they are looking for a JQL that filters out not only a specific epic, but it's children as well.
If I had to do it, the JQL would look like:
issuekey not in (EPC-123) AND ("Epic Link" not in (EPC-123) or or "Epic Link" is EMPTY)
where EPC-123 is the issue key to your epic.
Use an "AND" to join this to the rest of your epic, and you should be good to filter out Epics and issue from your query. If you need to further filter out subtasks of issues belonging to that epic, things get complicated. If you are on Server, I'm not sure if it's possible without an App, to be honest.
HOWEVER, If you are on Cloud, you can use
issuekey not in (EPC-123) and parentEpic not in (EPC-123)
To get the desired results, subtasks and all.
Hi @Sara Creenan (M&T) ,
also, check out these resources
https://support.atlassian.com/jira-cloud-administration/docs/manage-shared-filters/
https://community.atlassian.com/t5/Jira-Core-questions/how-to-delete-private-filter/qaq-p/255213
https://confluence.atlassian.com/adminjiraserver/managing-filters-938847876.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sara Creenan (M&T) ,
Please read this articles
https://support.taskray.com/hc/en-us/articles/236229187-Delete-Filters
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.