Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

jql query for filtering open to rejected bugs with assignee as all developers in a project

Rajesh K
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 12, 2023

jql query for filtering open to rejected bugs with assignee as a particular group in a project

2 comments

Comment

Log in or Sign up to comment
Warren Kent
Contributor
June 12, 2023

assuming you have a status called "Rejected", you can try the following:

1. if you have a list of the users in the team/group, you can list them 
project = ABC and issuetype in (bug) and assignee was in (a,b,c) and status in (open, rejected)

2. In our case we have a custom team/group field :
project = ABC and issuetype in (bug) and "Team[Dropdown]" = "abc" and status in (open, rejected)

Like # people like this
Anne Saunders
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 12, 2023

If the devs on a given project are in a specific Jira Group (devops, frontend, [Client] devs, etc.), you could also replace the "assignee was in (a,b,c)" or ""Team[Dropdown]" = "abc"" from @Warren Kent's examples with "assignee was in membersOf("[GroupName]")"

Like # people like this
Jehan Bhathena
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 6, 2023

Hi @Rajesh K ,

Based on your query "filtering open to rejected bugs with assignee as a particular group"

You can try : 

status changed FROM Open TO Rejected AND assignee in membersOf("Groupname")

 Or if you want to include the 2 Statuses , then :

status in (Open,Rejected) AND assignee in membersOf("Groupname")

Reference :

TAGS
AUG Leaders

Atlassian Community Events