You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

This function returns an issue list containing all issues which are directly under a given issue's parent according to Advanced Roadmaps hierarchy excluding the given issue itself. In the case that the given issue is a subtask an issue list with its sibling subtasks is returned.

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:

Syntax
siblingIssues() #Output: Issue list
Examples
Parser expressionDescription
siblingIssues()

Considering that current issue is JWT-6, this expression returns

JWT-4, JWT-12

Examples
Parser expressionDescription
siblingIssues()

Considering that current issue is JWT-7, this expression returns

JWT-10

Examples
Parser expressionDescription
siblingIssues()

Considering that current issue is JWT-14, this expression returns

JWT-15

Output

This function returns an ISSUE LIST


Variant where you additionally define issues.

Duplicated issues are filtered from the output.

Syntax
siblingIssues(issueList) #Output: Issue list
Examples
Parser expressionDescription
siblingIssues(linkedIssues("is blocked by")) 

Considering that expression linkedIssues("is blocked by") returns [JWT-2, JWT-9], this example returns the sibling issues of these issues:

JWT-11, JWT-16

To achieve this the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueList

ISSUE LIST

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

This function returns an ISSUE LIST


Variant where you define issue keys instead.

Syntax
siblingIssues(issueKeys) #Output: Issue list
Examples
Parser expressionDescription
 siblingIssues("JWT-3, JWT-7")

This example returns the sibling issues of JWT-3 and JWT-7:
JWT-4, JWT-12, JWT-8

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

TEXT

A comma separated list of issue keys.
Output

This function returns an ISSUE LIST

Function issuesUnder() should be used for retrieving children issues in level just under an issue.

Function allIssuesUnder() can be used for retrieving all children issues in any level below an issue.

Function parent() can be used for retrieving the parent of an issue.