Skip to end of banner
Go to start of banner

Epics

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

  • 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.

Epics JQL Keywords

IssuesInEpicCount

BugsInEpicCount

StoriesInEpicCount

IssuesInEpicToDoCount

IssuesInEpicInProgressCount

IssuesInEpicDoneCount

BugsInEpicToDoCount

BugsInEpicInProgressCount

BugsInEpicDoneCount

StoriesInEpicToDoCount

StoriesInEpicInProgressCount

StoriesInEpicDoneCount

  • No labels