This function returns an issue list containing the children issues located in the level just under current issue according to Advanced Roadmap hierarchy.

Advanced Roadmap hierarchy includes:

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

Example:

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

Considering that current issue is JWT-1, this expression returns all issues in the level just under it:

JWT-3, JWT-8

This function returns an


Variant where you additionally define issues.

Duplicated issues are filtered from the output.

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

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

JWT-2, JWT-11, JWT-6, JWT-10

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.

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

This example returns all issues in the level just under JWT-3 and JWT-8:
JWT-2, JWT-11, 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 siblingIssuesUnderEpic() should be used for retrieving all children issues in any level below the given issues.


Status
Tech review

Style guide

Short description

Returns all issues linked to a given epic

Output

Available since

Label