Custom JQL Searches

JQL support is a long awaited feature that helps you leverage power of JQL and work around Jira limitations. There are two flavors of searching, one based on simple boolean expressions and another based on already saved scripts.

Simple Issue Language™ JQL Configuration

You can access this page from Administration → Manage Apps → Power Apps Config → Power Scripts → JQL. Here you can set the number of results that will be displayed for every user group.

  • JQL Default Value — set the default value, that is the number of issues that will be returned by a JQL query for a user that is not a member of any listed group. Defaults to 1000.

  • Unlimited — if selected, the results will not be limited but this might cause performance issues.

  • Operations — In the table you can view the values for the groups already configured. You can edit and delete those rules.

  • For a given user, the number of returned results is calculated as the maximum between the default value and the maximum value of the groups where the user belongs.

 

By default, the searches in JQLs of any kind are limited to 1000 elements. This is due to the fact that allowing the users to perform searches that return unlimited number of results might result in poor performance of your entire Jira. If you need more, you can increase the parameters above, either by group or the generic default.

Please also note that the above limit is just a hint, and that the results returned, if there are more than the configured value, are guaranteed to be at least that number plus a constant (we do not enforce that exact number).

Searching issues

One of JQL limitations where users struggle the most is the inability to search for simple expressions. For instance, you can't search for issues where the reporter is the same as the assignee. This is due to the fact that JQL expressions are evaluated once at the beginning of the search and that it accepts only <field> <operator> <constant> expressions in search.

silJQLExpression / expression

Let's see what silJQLExpression can do.

silJQLExpression(sil_boolean_expression, JQL_filter)


This JQL fragment accepts two parameters: the first one is any SIL™ boolean expression which will be run on each matching issue, the other is a JQL expression used for initial results filtering on which the expression is applied. silJQLExpression can only be applied on issues, it cannot be used to search another object types in Jira.

Starting with version 4.1.1 of Power Scripts™, an alias exists for the silJQLExpression: due to the popular request, we named it expression

Both silJQLExpression and expression do the same thing.

However, version 4.1.1 also adds the possibility to pass parameters on the script fragment that you use, so the syntax has become:

expression(sil_boolean_expression, JQL_filter[, param1[, param2, .....]])

We have also added other improvements that you can see on the Pre-Defined JQL Functions page.

In the following example, we're searching for all bugs in the TEST project that have the same user as the reporter and assignee:

key in silJQLExpression('reporter == assignee', 'project = TEST and issueType = \"Bug\"')

This script does the following:

  1. Runs the filter JQL, if provided. If empty, it will get all the issues from all the projects to which the user has access.

  2. If there are issues, it generates a simple script starting with the expression you provided.

  3. For each issue, it runs the script; if expression is true, key is retained.

  4. It returns the keys array back to the JQL so it can further processed by some other JQL expressions.

Notice that the filtering is of paramount importance, although you can provide an empty string there, this is really not recommended.

For performance reasons, put a filter that keeps the potential number of matching issues as low as possible. Remember that running a script over an issue is more complex than simply comparing values.

For instance, the following JQL is valid and serves the same purpose as above:

However, this is not quite right. The expression will be evaluated on all issues from that TEST project, and this is not really desirable when you have another filter condition to apply. Re-writing it in the first form avoids this, so be cautious when you see clauses linked by AND on the same level as the silJQLExpression construct.

More Complex JQL

You can construct any arbitrary JQL starting with this expression:

silJQL and silJQLList

What if the expression you are looking for is much more complicated? What if the expression is in fact a big chunk of logic and you need to obey to it to find your issues? We introduced two more JQL expressions:

  • silJQL

  • silJQLList

Both expressions receive the path to a SIL™ file as first argument, and (optionally) parameters to run that script. The difference between them is that silJQL returns a single result, while silJQLList returns a list of results.

Therefore silJQL can use operators like =!=, >=, <= ... while silJQLList can use operators like in, not in, and so on.

Let's see an example to see what these expressions can do. At first, we'll create a script in a file using SIL™ Manager, and name it test.sil.

test.sil

After we saved the file, let's use our newly created script in search:

jql

Performing the search several times, you will see that the searched issue changes, depending on that random value.

You will notice that we passed the project as a parameter to the SIL™ script, and that the file will be resolved normally relative to the root (silprograms). You can pass any parameters you like there. The script runs in the Jira context, and not in the issue context.

The following example is returning more than one ticket:

test1.sil

Now we'll save it as test1.sil and perform the following JQL:

The results returned will look like the following image:

When you build filtering expressions, keep in mind that the overall performance of the script impacts the search performance.

Other searches with silJQL and silJQLList

Using silJQL and silJQLList you can also get other values, not just issue keys. For instance, consider the following script:

test_issty.sil

If you perform a search using the silJQLList, but you base the query term on the issuetype this time, then the issue types will be filtered from the values returned from that nice SIL™ script.

jql

You can use the same technique with statuses, components, and so on.

Additional notes

Search performance can be further improved either by using Pre-Defined JQL Functions or by using functional indexing, we added both features in the version 4.1.1 of Power Scripts™ for Jira: