(comment ~ currentUser() ) AND updatedDate >= -7d ORDER BY updated DESC
this returns issues that are updated in last 7 days , whereas the user is mentioned in comments before months.
Gouthaman,
Using this expression
(comment ~ currentUser() ) AND updatedDate >= -7d ORDER BY updated DESC
Will show the issues that were updated within 7 days, and not exactly where the last comments were added within 7 days. Updating a field, doing a transition, assigning etc. is considered as an update, which will update the updatedDate and catch in your filter.
This has been discussed before to add the option to search the comment date through JQL on this suggestion JRA-44498 however, it was decided to not implement this function.
They also provided some third-party plugins that could provide this functionality such as ScriptRunner for JIRA and SQL for JIRA.
-Josh Loe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.