Hello!
Total jira beginner here. I would like to search for issues created by my team, but closed by everyone else (excluding my team)
How can I do that?
I started to write something like that:
issuetype = Bug AND creator in (x, y, z) AND status = Resolved AND "Resolver/s" not in (x, y, z) but it does not list anything.
I would appreciate any help
Hi @Michal
You can try this one:
issuetype = Bug AND reporter in (xxxxxx, yyyyyyyy) AND status was Resolved BY zzzzzzzzz
Hope this helps!
Thanks, the only problem is I know 6 users that create the issues in my team, but I cant list all developers that can closed it. Don't know who there are.
So I need to somehow exclude my guys from resolvers - to see a list of issues created by my team but closed by everyone else but not my guys. Is this somehow possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don´t think you are going to be able to filter by resolvers :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this:
issuetype = Bug AND creator in membersOf("group name") AND status = Resolved AND (resolution CHANGED BY x OR resolution CHANGED BY y OR resolution CHANGED BY z)
Not the most elegant query, especially if you have lots of resolvers, but I'm afraid there's nothing else you can do here with what's available in Jira out of the box.
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.