I want to find the issues i am not assigned to in a specific project.
When i run the query "assignee != currentUser()" without specific project i do get the issues i'm not assigned to.
But when i run the query "project = TIC AND assignee != currentUser()" i don't get any issue even though i know for a fact that, in the TIC project, some issues are not assigned to me.
Does anybody know how I could sort this out?
Thank you!
Any chance the issues you expect as a result are not assigned to anyone?
assignee != currentUser() will only return issues assigned to other users. It will not shouw unassigned issues.
Try this:
project = TIC AND (assignee != currentUser() OR assignee is empty)
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.