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

Compare with Current View Page History

« Previous Version 19 Next »

This JQL function returns users with a certain role in a certain project.

Syntax
usersWithRoleInProject(role, projectKey) #Output: User list
Examples
Parser expressionDescription
assignee in usersWithRoleInProject("Developers", "CRM")
This example returns all issues whose assignee belongs to the Developers role in the CRM project.
reporter in usersWithRoleInProject("Administrators", "HR")

This example returns all issues whose reporter belongs to the Administrators role in the HR project.

This function returns users that belongs to the Administrators role in the PR project, but the whole JQL will return every issue whose reporter is in the returned list, even if it returns an issue from a different project.

Additional information

Parameters used in this function

ParameterInput (data type)Description
role

TEXT

Text containing a valid project role name.
projectKey

TEXT

Text containing a valid project key.

Output

This function returns a USER LIST


The result is not what you expected? The number of returned issues feels too low?

By default, the maximum number of issues that will be returned by the JQL subquery, and thus can be processed by the logical expression is 1000.

To ensure the performance of your entire Jira instance, we limit the execution of the JQL function in terms of issue count and execution time. Please refer to your admin if you need to change the configuration.