This function returns an issue list containing all descendant issues, i.e., all related issues located in any level below current issue according to Advanced Roadmaps hierarchy.

Advanced Roadmaps hierarchy includes:

  • Issues linked by Parent Link custom field.
  • Issues linked by Epic-Story link.
  • Subtasks in the lowest level of the hierarchy. Subtasks under issues in intermediate levels of the hierarchy are not considered to belong to Advanced Roadmaps hierarchy.

Example:

allIssuesUnder() #Output: Issue list
Parser expressionDescription
allIssuesUnder()

Considering that current issue is JWT-3, this expression returns all issues in any level below it:

JWT-2, JWT-11, JWT-7, JWT-4, JWT-12, JWT-6, JWT-10, JWT-13

This function returns an


Variant where you additionally define issues.

Duplicated issues are filtered from the output.

allIssuesUnder(issueList) #Output: Issue list
Parser expressionDescription
allIssuesUnder(linkedIssues("is blocked by")) 

Assuming that expression linkedIssues("is blocked by") returns [JWT-4, JWT-8], this example returns all the children issues in any level below issues JWT-3 and JWT-4:

JWT-6, JWT-10, JWT-9, JWT-16

To achieve this the following functions are used:

Parameters used in this function

ParameterInput (data type)Description
issueList

Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or issuesUnderEpic()).

This function returns an


Variant where you define issue keys instead.

Duplicated issues are filtered from the output.

allIssuesUnder(issueKeys) #Output: Issue list
Parser expressionDescription
 allIssuesUnder("JWT-3, JWT-8")

This example returns all issues in any level below issues JWT-3 and JWT-8:
JWT-2, JWT-11, JWT-7, JWT-4, JWT-12, JWT-6, JWT-10, JWT-13,JWT-9, JWT-16

Parameters used in this function

ParameterInput (data type)Description
issueKeys

A comma separated list of issue keys.

This function returns an

Function issuesUnder() returns the children issues in level just under an issue.

Function siblingIssues() returns issues sharing the same parent as a given issue, excluding the given issue.

Function parent() returns the issue a given issue is children of.

Function issuesAbove() returns all the related issues in levels above an issue.


Status
Tech review

Style guide

Short description

Returns issues located in the level just under a given parent issue according to Advanced Roadmaps hierarchy.

Output

Available since

Label