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

Compare with Current View Page History

« Previous Version 3 Next »

Returns an issue list containing issues which are directly under current issue's epic (i.e., stories are included in the output, but their sub-tasks are not).

The current issue's epic is obtained using the logic of function epic() .

The current issue is included in the output, except if it is an epic itself.

syntax
issuesUnderEpic() #Output: Issue list
Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST


The function returns an ISSUE LIST containing issues which are directly under the epic of issues in argument issues. Duplicated issues are filtered from the output.

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

The function returns the ISSUE LIST of issues directly under epics of issues blocking current issue.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST


Returns an ISSUE LIST containing issues which are directly under the epic of issues with keys in argument issue_keys.

Argument issue_keys is a comma-separated list of issue keys. Duplicated issues are filtered from the output.

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

The function returns the ISSUE LIST of issues directly under epics of issues with keys CRN-15 and HD-21.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST