Simplify a jql for a board

Joe March 5, 2021

I am trying to simplify a query for board to show all the child issues for an epic. 

project in ("P") AND issue in childIssuesOf(P-1) OR issue in childIssuesOf(P-2) OR issue in childIssuesOf(P-3) OR issue in childIssuesOf(P-4) OR issue in childIssuesOf(P-5) OR issue in childIssuesOf(P-6) ORDER BY Rank


Any suggestions? 

1 answer

0 votes
Sudarshan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 7, 2021

Hello @Joe try 

project = P AND issueFunction in issuesInEpics("issuekey in (epic number)")

 This JQL results out the items linked to the specified epic.

If you are looking for the hierarchy result -- not possible with JQL - try with Structures.

Suggest an answer

Log in or Sign up to answer