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.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.