We have many members in different groups. We would like to generate a report showing how many issues are in progress per group (each assignee belongs to a group). What would be the best way?
Hi @Ji Soo Yi ,
You can get all the issues with a simple query for each group -
JQL : project = XXX AND assignee in membersOf("xxx Group")
and to get the total count you can use rest as follows
{base url}/rest/api/2/search?jql={Above JQL}&maxResults=0
you will get the result like this =
{"startAt":0,"maxResults":0,"total":319,"issues":[]}
where total is no. of issues
if not save the filter, it will give the no. of issues in that filter.
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.