I'd like to use JQL to check, if the creator of an issue is in a certain group.
Something like
creator in "Group ABC"
However "in" is the wrong operator here, as "in" expects a list.
So, is there some command I can use to list all members of the group ABC?
Or is there a different operator than "in"?
Hi Niels - Welcome to the Atlassian Community!
Try using:
creator in membersOf("Group ABC")
You can use membersOf. That will query based on a group.
creator IN membersOf("jira-admins-xxxxx)
This will query the jira-admin group.
More on that here:
https://support.atlassian.com/jira-service-management-cloud/docs/jql-functions/
Perform searches based on the members of a particular group.
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Brilliant - works like a charm, thank you so much for the super-fast answer. I couldn't find it in the quick guide and never thought to dive into the depths of the documentation. My bad.
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.