The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Comments for this post are closed

Community moderators have prevented the ability to post new comments.

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
Community Champion
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 Champion
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