allegoric
allegoric

Reputation: 15

Display list of subtasks and corresponding stories inside an Epic

I want to list all Stories and Subtask of an existing epic ES-1 in project ES. Is there a good way to solve this?

Upvotes: 0

Views: 1604

Answers (1)

tletschert
tletschert

Reputation: 36

This is probably not possible with the out-of-the-box JQL capabilities of Jira. However, if you have ScriptRunner at hand, you could try:

key = ES-1 OR "Epic Link" = ES-1 OR issueFunction in subtasksOf("'Epic Link' = ES-1") ORDER BY type ASC

Upvotes: 2

Related Questions