I'm creating a filter for a dashboard. Team members often reassign tickets but we still want those tickets to be viewable as associated with those individuals.
I've tried the following (and similar) JQL:
assignee was in membersOf("Group Name") AND project = "Project" AND updatedDate >= startOfWeek()
With the error:
A value provided by the function 'membersOf' is invalid for the field 'assignee'.
-
Using 'assignee in' only shows tickets actively assigned to those individuals, but does not account for things having been handed off to someone else.
The desired result would be similar to 'Assignee was ID' but targeted at a Group.
Hi @Michael M,
Welcome to the community!
It looks like your JQL is correct. Here is the membersOf documentation.
The value error may be you are returning assignees who are no longer valid, such as deactivated or removed accounts. Here is another answer about a similar problem:
Cheers,
Nick [Tempo/ALM Works]
Thank you for this insight Nicholas,
It seems a couple of the user IDs we were given had never received a ticket and didn't have a history to pull from. Which lead them to be flagged as invalid as an Assignee in the JQL after I manually typed each one in instead of trying to use the group.
I went back, created a test ticket and assigned it to each of these team members. Then tried using
assignee was in membersOf("Group Name") AND project = "Project" AND updatedDate >= startOfWeek()
again and it worked fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.