I'm attempting to compile a list of issues requiring my attention. Specifically, I'm interested in issues where I've left a comment, but the last comment was made by someone else, and I haven't viewed the issue since that comment. Is there a way to accomplish this in Jira?
I'm not aware of a way to do it out of the box but, if you have Scriptrunner, the following query will show you any issue that you have commented on, but your comment isn't the last comment.
issuefunction in commented("by mparks") and issueFunction not in lastComment("by mparks")
There is also a lastViewed field which is a date field that shows any issues that you have viewed within a particular date range, which might help in writing the query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.