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

Compare with Current View Page History

« Previous Version 8 Next »

This function returns an issue list containing issues which are linked to same epic as the current issue

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

Only standard issue issues (no sub-tasks) will be returned and duplicates are being removed.

syntax
issuesUnderEpic() #Output: Issue list
Examples
Parser expressionDescription
issuesUnderEpic()

This example returns a list with the all issues linked to the same epic as the current issue, e.g.:

[JWT-2, JWT-3, JWT-4]

Output

This function returns an ISSUE LIST


Variant where you specify the issues in an issue list.

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

This example returns the issue list of all all issues linked to the same Epics as the issues blocking the current issue, e.g.:

[JWT-2, JWT-3, JWT-4]

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
issuesUnderEpic(issueKeys) #Output: Issue list
Examples
Parser expressionDescription
 issuesUnderEpic("CRM-15, HD-21")

This example returns an issue list of issues linked to the same epics as CRN-15 and HD-21.

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