Jira epics filter our done/archived missions

Niv Hamisha November 21, 2024

 

Hey there,
Do any of you know a way to display only active missions (not done/archived) inside an epic?

I have this Jql displaying all the active epics:
issuetype = Epic AND status not in (Done, Archived) AND Squad = DevOps ORDER BY created DESC

How can I filter out all done/archived tasks within them? 

I know that option is available in the cloud version,
The Jira version I'm using is Jira v9.12.4

Thanks in advance!

1 answer

0 votes
Nikola Perisic
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 21, 2024

Welcome @Niv Hamisha 

Try with this query:

issuetype = Task AND statusCategory = Done AND parent IS NOT EMPTY ORDER BY created DESC

 

Niv Hamisha November 21, 2024

I'm getting this response: 

The operator 'is not' is not supported by the 'parent' field.
Salih Tuç
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.
November 21, 2024

Hi @Nikola Perisic , I guess this is not covering the case since @Niv Hamisha is looking for undone tasks under open Epics :)

Nikola Perisic
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 21, 2024

Hi @Salih Tuç , thanks for letting me know! In that case statusCategory != Done should do the trick.

Niv Hamisha November 21, 2024

This will present all un-done tasks. 
I'm looking to filter out all done/archived issues from this viewimage.png

Suggest an answer

Log in or Sign up to answer