...
issuesInEpicInProgressCount = 1
retrieves epics with exactly one child issue currently in progress.
IssuesInEpicDoneCount
Finds epics with a certain number of child issues in the “Done” status category.
...
issuesInEpicDoneCount < 5
identifies epics with fewer than five completed child issues.
BugsInEpicToDoCount
Searches for epics that have a specific number of bugs in the “To Do” status category.
...
bugsInEpicToDoCount >= 1
finds epics with at least one bug yet to be addressed.
BugsInEpicInProgressCount
Finds epics with a certain number of bugs in the “In Progress” status category.
...
bugsInEpicInProgressCount = 0
retrieves epics with no bugs currently being worked on.
BugsInEpicDoneCount
Searches for epics that have a specific number of bugs in the “Done” status category.
...
bugsInEpicDoneCount > 0
identifies epics where at least one bug has been resolved.
StoriesInEpicToDoCount
Finds epics with a certain number of stories in the “To Do” status category.
...
storiesInEpicToDoCount = 2
retrieves epics with two stories waiting to be started.
StoriesInEpicInProgressCount
Searches for epics with a specific number of stories in the “In Progress” status category.
...
storiesInEpicInProgressCount > 1
identifies epics with more than one story currently in progress.
StoriesInEpicDoneCount
Finds epics with a certain number of stories in the “Done” status category.
...