assignee in (user1,user2) or reporter in (user1,user2)
Is it possible to shorten the above? My issue is that I have a lot of users so just gives the following error. "Error occurred communicating with the server. Please reload the page and try again."
Would be nice only need one list of the same users.
As @Pilar noted, you should be using functional groups for this. Your query must be able to fit into an HTTP request so it's pretty clear you've gone over some size limit.
JIRA can query on groups using membersOf()
JQL function which is a stock option built-in to JIRA.
assignee in membersOf("group-name") reporter was in membersOf("group-name")
I dont think with JIRa, out of the box you can do this. But with JQL tricks plugin you can.
assignee in membersOfGroups("my-special-group")
See this link for more detials
http://www.j-tricks.com/jqlt-user-functions.html
Pilar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.