How to find list of epics not closed but child issues are closed in Jira Cloud

In this article, you can find the list of Epics where all the child issues are in Closed or Done status and Epic is not Resolved in Jira Cloud using JQL Search Extensions for Jira.

 Instructions :

Navigate to the JQL Search Extensions for Jira and add the following JQL shown below:

type=Epic AND issuesInEpicToDoCount=0 AND issuesInEpicInProgressCount=0 AND issuesInEpicDoneCount>0 and status != Done
  1. https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/3185901573/Epics+JQL+functions

  2. https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/3185901573/Epics+JQL+functions#issuesInEpicDoneCount

  3. https://jqlsearchextensions.atlassian.net/wiki/spaces/SEARCH/pages/3185901573/Epics+JQL+functions#bugsInEpicInProgressCount

Â