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

Compare with Current View Page History

« Previous Version 3 Next »

This JQL function can be used to search for issues that satisfy the specified JQL query and boolean predicate.

Syntax
issueSelection(query, predicate) #Output: Issue list
Examples
Parser expressionDescription
issue in issueSelection("project = CRM and status=\"In Progress\" and priority = 1", "{issue.dueDate} = {issue.customfield_aaaaa} and count(linkedIssues()) = 0")

This examples returns all issues that fulfill the entered JQL and furthermore fulfill the given boolean expression.

(tick) Note that you can easily use there all parser logic known from our custom fields, post functions, etc.

Additional information

Parameters used in this function

ParameterInput (data type)Description
query

TEXT

A JQL query to select the issues that should be further filtered by the boolean predicate. Everytime a double-quotation is used in the query, they must be jumped with a slash, just like in the previous example.

predicate

TEXT

A valid parser expression that returns a boolean value.
Output

This function returns ISSUE LIST.