Hi Shneior,
at what level you need to get this information? At DB level, at application level?
memberOf() is a JQL Function that allows you to filter something based on user mermebrship. For example, this query retrieve all issue whose assigne is a member of QA-HH group
assignee in memberOf("QA-HH")
If you need to retrieve users in that group you can access User Management->Group find this group and you will have a list of all users within. You need to be a Sys Admin to do that. If not ask to your Sys Admin.
Ciao,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shneior Dicastro ,
here your query :
select cu.user_name, cu.display_name, cu.email_address
from cwd_membership cm
inner join cwd_user cu on (cm.child_id=cu.ID)
where cm.parent_name = 'YOUR_GROUP_NAME_HERE';
If it's ok, please mark my answer as accepted.
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you try this solution here: https://community.atlassian.com/t5/Jira-questions/MySQL-query-to-return-users-in-specific-groups/qaq-p/407461 ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
select * from cwd_membership;
I can't find "cwd_membership" table
why?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this query works on all of our servers. Maybe you're on the wrong database?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok, i think it's internal permission issue in my organisation(Qualcomm)
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.