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

Compare with Current View Page History

« Previous Version 6 Next »

This function returns the list of all sub-tasks with the same parent like the current issue.

In case the current issue is not a sub-task, an empty issue list will be returned.

siblingSubtasks() is equivalent to subtasks(%{parent.key})EXCEPT issueKeysToIssueList(%{issue.key}).

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

This example returns all sub-tasks with the same parent issue like the current one - excluding the current issue.

Output

This function returns an ISSUE LIST.

If the current issue is not a sub-task or there are no sibling sub-tasks, the function returns an empty ISSUE LIST.


Variant where you can specify an issue list to get the sibling sub-tasks from.

Syntax
siblingSubtasks(issueList) #Output: Issue list
Examples
Parser expressionDescription
siblingSubtasks(linkedIssues())

This example returns all sibling sub-tasks of the currently linked issues.

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 subtasks()).
Output

This function returns an ISSUE LIST


Variant where you can specify a comma separated list of issue keys to get the sibling sub-tasks from.

Syntax
siblingSubtasks(issueKeys) #Output: Issue list
Examples
Parser expressionDescription
siblingSubtasks(linkedIssues())

This example returns all sibling sub-tasks of the currently linked issues.

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

TEXT

A text with comma separated issue keys.
Output

This function returns an ISSUE LIST