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

Compare with Current View Page History

« Previous Version 7 Next »

This function returns an issue list containing issues which are directly under epic of the current issue (i.e., Stories are included in the output, but their sub-tasks are not), excluding current issue. The current issue should be an issue directly under an epic, (i.e., it can't be a sub-task or an epic).

Syntax
siblingIssuesUnderEpic() #Output: Issue list
Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST


Variant where you additionally define issues.

Duplicated issues are filtered from the output.

Syntax
siblingIssuesUnderEpic(issue list issues) #Output: Issue list
Examples
Parser expressionDescription
siblingIssuesUnderEpic(linkedIssues("is blocked by"))

This example returns the issue list of issues directly under epics of issues blocking current issue, excluding from the output issues blocking current issue.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST


Variant where you define issues_keys instead of issues.

Argument issue_keys is a comma separated list of issue keys.

Duplicated issues are filtered from output.

Syntax
siblingIssuesUnderEpic(text issue_keys) #Output: Issue list
Examples
Parser expressionDescription
siblingIssuesUnderEpic("CRM-15, HD-21") 

This example returns the issue list of issues directly under epic of issues with keys CRM-15 and HD-21, excluding from the output issues with keys CRM-15 and HD-21.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST