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 the issue list of issues returned by the specified JQL. Visibility permissions applied are those of current user.

Typically you will want to use this function for replacing any current expression using getIssuesFromProjects() function.

We advice to use this function for performance reasons when the number of issues to be retrieved or filtered is very high (all issues in a project or various projects).

Syntax
issuesFromJQL(jqlQuery) #Output: Issue list
Examples
Parser expressionDescription
issuesFromJQL("status in (Open, Done)")

This example returns an issue list with all issues that are in status "Open" or "Done".

issuesFromJQL("'Story points' is not empty")
This example returns an issue list with all issues that do have Story points.
Additional information

Parameters used in this function

ParameterInput (data type)Description
jqlQuery

TEXT

Any valid JQL Query.

(warning) Double quotation marks in the JQL have to be replaced with single quotation marks, e.g.:

Usually JQL would look like"Epic Link" is not empty
Using it within issuesFromJQL()'Epic Link' is not empty
Output

This function returns an ISSUE LIST.

If the jqlQuery does not return a result, the function returns an empty ISSUE LIST.