I would like to get the tickets assigned to me which the last comment is not mine.
This is the actual query:
project = EXPROYECT AND assignee = "ex.user@example.com" AND status not in (Closed, Resolved)
I want to be able to see the tickets that other people (not me) have written in the last comment.
Thank you in advance!
Hi!
Try this:
issueFunction not in lastComment("by currentUser()") and assignee = currentUser() and project = EXPROYECT and status not in (Closed, Resolved)
It's working!! Thank you so much!
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.