JIRA Query (JQL) to filter these issues in a specific EPIC set

I am currently editing the Quick Filters of my Agile project in JIRA. And I need one where I see all the problems from a certain set of epics. I use something like

"Epic Link" in (ABC-1, ABC-18)

where ABC-1, ABC-18 are my epics. The problem is that I need to update the request every time I add a new epic. Instead, I think there is a way to get a list of epic texts that excite me with another search, and merge the two into a different query.

So, for example, I have all the EPICs that interest me (1, 18), with the components installed in "XYZ". So I want to do something like

"Epic Link" in ([Get list of EPICs with component XYZ])

How should I do it?

+4
source share
2 answers

, .

, Script Runner, linkedIssuesOf . JQL :

issueFunction in linkedIssuesOf("project = MyProject and component in ('A', 'B')", "is epic of")

.

JQL Tricks, issueWhereEpicIn, . .

Atlasian .

+2

- , : issuetype = epic and reporter = currentUser() and component = XYZ

0

All Articles