Hi @Prashanth
I am almost sure it's not possible.
But as a workaround, you can create specific Atlassian groups on the Admin side (if you are an admin) for your project and the different project roles, add all existing users to these groups and query with the following JQL syntax :
assignee in membersOf("groupname-for-your-project-role")
https://support.atlassian.com/jira-software-cloud/docs/jql-functions/#membersOf--
Maybe, you can filter better with this function too :
Hope it helps
In Jira Query Language (JQL), you can use the issueFunction
to filter issues based on the project role of the assignees. Below is an example JQL query that you can use to find a list of issues where the assignees belong to a specific project role:
issueFunction in membersOf("Project Role Name")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey There,
You could accomplish this by creating a "Project role" custom field with the designations you need, and use that in your filters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Prashanth
This isn't available in native JQL at this point - there is a feature request you can vote for though, check out JRACLOUD-21711
You can search by Group if that's a potential alternative? EG.
assignee in membersOf("Administrators")
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Become an effective Jira admin
Manage global settings and shared configurations called schemes to achieve goals more quickly.
Streamline Jira administration with effective governance
Improve how you administer and maintain Jira and minimize clutter for users and administrators.
Learning Path
Become an effective Jira software project admin
Set up software projects and configure tools and agile boards to meet your team's needs.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.