...
Epics JQL Functions
EpicsOfChildrenInQuery
For a given JQL subquery, it finds Retrieves the epics of the resulting issuesissues that match a specified JQL subquery.
Examples:
issue in epicsOfChildrenInQuery("'Team Name' = 'My great team'") and status='To Do'
finds
...
epics associated with your team that are still in
...
‘To Do’ status.
issue in epicsOfChildrenInQuery("assignee = currentUser() AND updated > -1d")
...
retrieves epics of
...
your issues that
...
have been updated
...
in the last day.
ChildrenOfEpicsInQuery
For Finds the child issues of epics that match a given JQL subquery, it finds the children of the resulting epics.
Examples:
issue in childrenOfEpicsInQuery("resolution is not empty") AND resolution is empty
...
identifies unresolved issues
...
that belong to
...
resolved epics.
issue in childrenOfEpicsInQuery("fixVersion = '21.0.1' AND component = UI AND labels = 'review'")
finds
...
child issues of epics with
...
the specified fix version, component, and label.
Epics JQL Keywords
Status \ Issue type | Any status | TO DO | IN PROGRESS | DONE |
---|---|---|---|---|
Any issue type | issuesInEpicCount | issuesInEpicToDoCount | issuesInEpicInProgressCount | issuesInEpicDoneCount |
Story | storiesInEpicCount | storiesInEpicToDoCount | storiesInEpicInProgressCount | storiesInEpicDoneCount |
Bug | bugsInEpicCount | bugsInEpicToDoCount | bugsInEpicInProgressCount | bugsInEpicDoneCount |
IssuesInEpicCount
Search Searches for epics with a particular specific number of child issues, regardless of issue type.
Example:
issuesInEpicCount > 5
finds epics that have more than five child issues.
BugsInEpicCount
Search Searches for epics with that contain a particular number of bugs.
Example:
bugsInEpicCount = 2
retrieves epics with exactly two bugs.
StoriesInEpicCount
Search Searches for epics with a particular specific number of stories.
Example:
storiesInEpicCount >= 3
finds epics that have three or more stories.
IssuesInEpicToDoCount
Search for Finds epics with a particular certain number of child issues in "To Do" status categorythe “To Do” status category.
Example:
issuesInEpicToDoCount > 0
identifies epics that have child issues awaiting action.
IssuesInEpicInProgressCount
Search Searches for epics with a particular specific number of child issues in "In Progress" child issues in the “In Progress” status category.
Example:
issuesInEpicInProgressCount = 1
retrieves epics with exactly one child issue currently in progress.
IssuesInEpicDoneCount
Search for Finds epics with a particular certain number of child issues in "Done" status categorychild issues in the “Done” status category.
Example:
issuesInEpicDoneCount < 5
identifies epics with fewer than five completed child issues.
BugsInEpicToDoCount
Search Searches for epics with that have a particular specific number of bugs in "To Do" the “To Do” status category.
Example:
bugsInEpicToDoCount >= 1
finds epics with at least one bug yet to be addressed.
BugsInEpicInProgressCount
Search for Finds epics with a particular certain number of bugs in "In Progress" the “In Progress” status category.
Example:
bugsInEpicInProgressCount = 0
retrieves epics with no bugs currently being worked on.
BugsInEpicDoneCount
Search Searches for epics with that have a particular specific number of bugs in "Done" the “Done” status category.
Example:
bugsInEpicDoneCount > 0
identifies epics where at least one bug has been resolved.
StoriesInEpicToDoCount
Search for Finds epics with a particular certain number of stories in "To Do" the “To Do” status category.
Example:
storiesInEpicToDoCount = 2
retrieves epics with two stories waiting to be started.
StoriesInEpicInProgressCount
Search Searches for epics with a particular specific number of stories in "In Progress" status categorythe “In Progress” status category.
Example:
storiesInEpicInProgressCount > 1
identifies epics with more than one story currently in progress.
StoriesInEpicDoneCount
Search for Finds epics with a particular certain number of stories in "Done" status categorythe “Done” status category.
Example:
storiesInEpicDoneCount = 0
retrieves epics where no stories have been completed yet.