Hello,
If I need to search for issues that have been assigned to more than a single person in its history, is there a way to do this?
Thanks!
If you have a user group that contains all the users who might be valid assignees for the issues, I think you can use something like this:
project=XXX and assignee changed from membersOf("jira-software-users") to membersof("jira-software-users") order by created DESC
I plugged in "jira-software-users" as the group name, but there may be members of that group that are not valid to use as Assignees in the project. So you might need to create another more constrained user group for the valid users in the scope of your project.
Thanks, Trudy. Were you able to get that query to work? Using this query:
project="XYZ Project" and assignee changed from membersOf("jira-users") to membersOf("jira-users") order by created DESC
I get this error:
A value provided by the function 'membersOf' is invalid for the field 'assignee'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did not work through getting results from the query, but we can tell that the syntax is correct.
That error indicates that there is somebody in the group that does not have the Assignable Users permission in the project. Check the permission scheme for the project to see if it limits who can be set as an Assignee. Alternately, the group may contain users who have been deactivated, and those users would not be valid Assignees for a project any more.
You may need to create a new user group in your JIRA instance that encompasses the users who are active users and have permissions to be assigned to issues in the project.
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.