Filter for extracting all JIRA problems, where I mentioned in the last 7 days in a comment

I am trying to set up a JIRA filter to find all references to me (currentUser ()) in the last 7 days. I am close to searching below, but it still gives me all the problems that mentioned me And have been updated in the last 7 days. Which is much more. :) I want all the problems that I mentioned in the last 7 days in the comment.

comment ~ currentUser() AND issueFunction in commented("after -7d") 

Thanks for the help!

+6
source share
3 answers

Have you tried something like this query?

 (text ~ currentUser()) AND updatedDate >= -7d ORDER BY updated DESC 

This gives me all the mention in the last 7 days. But also mentioned in the descriptions (found this on this blog post ).

+3
source

I am using something like this:

 (summary ~ currentUser() OR description ~ currentUser() OR comment ~ currentUser()) AND updatedDate >= -7d 
0
source

Below is the request that you mentioned anywhere (comments, description, resume, etc.) and updated in the last 7 days.

 text ~ currentUser() AND updated > -7d ORDER BY updatedDate DESC 

There are no direct queries to filter by date added. Perhaps the scripted JQL functions in the link can help this way.

https://jamieechlin.atlassian.net/wiki/pages/viewpage.action?pageId=57999378#ScriptedJQLFunctions-lastComment(commentquery)

0
source

All Articles