Epics JQL Functions
epicsOfChildrenInQuery()
childrenOfEpicsInQuery()
Epics JQL Keywords
issuesInEpicCount
bugsInEpicCount
storiesInEpicCount
issuesInEpicToDoCount
issuesInEpicInProgressCount
issuesInEpicDoneCount
bugsInEpicToDoCount
bugsInEpicInProgressCount
bugsInEpicDoneCount
storiesInEpicToDoCount
storiesInEpicInProgressCount
storiesInEpicDoneCount
Epics JQL Functions
EpicsOfChildrenInQuery
For a given JQL subquery, it finds the epics of the resulting issues.
Examples:
issue in epicsOfChildrenInQuery("'Team Name' = 'My great team'") and status='To Do'
finds my team’s epics that are still in progress.issue in epicsOfChildrenInQuery("assignee = currentUser() AND updated > -1d")
finds epics of my issues that were updated over the last day.
ChildrenOfEpicsInQuery
For a given JQL subquery, it finds the children of the resulting epics.
Examples:
issue in childrenOfEpicsInQuery("resolution is not empty") AND resolution is empty
finds issues in progress that belong to an epic which has finished.issue in childrenOfEpicsInQuery("fixVersion = '21.0.1' AND component = UI AND labels = 'review'")
finds children of epics with a particular version, component, and label.