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

Compare with Current View Page History

Version 1 Next »

On this page

Use case

In the following use case we use a JWT JQL function in order to retrieve all issues whose assignee is not active anymore and in which the current user was an assignee in the past.


Configuration

Use the following JQL:

issue in issueSelection("project in (PLAT, WEB)", "!isActive(%{issue.assignee}) and %{system.currentUser} in fieldHistory(%{issue.assignee})")


Details to keep in mind

To set the subquery, it is recommendable to test it before in the Issue Navigator to make sure that it is correctly written and that it returns the expected.

The less issues returned by the subquery, the faster the function will be executed, so the more precise with the subquery, the better.

To find out which functions can be useful for your use case, you can check the parser function's documentation. In this case we have used:


Screenshots




If you still have questions, feel free to refer to our support team.