I'm trying to setup a JIRA filter to find all the mentions of me(currentUser()) in the last 7 days. I'm close with the search below, but it still gives me all issues that mentioned me AND were updated in the last 7 days. Which is a lot more. :) I want all the issues where I was mentioned in the last 7 days in a comment.
comment ~ currentUser() AND issueFunction in commented(“after -7d”)
Thank-you for your help!
Did you try something like this query?
(text ~ currentUser()) AND updatedDate >= -7d ORDER BY updated DESC
It gives me all mentions in the last 7 days. But also mentions in descriptions (found it on the this blog post).
I use something like this:
(summary ~ currentUser() OR description ~ currentUser() OR comment ~ currentUser()) AND updatedDate >= -7d
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With