我正在尝试设置一个JIRA过滤器来查找过去7天内的所有提及(currentUser()).我接近下面的搜索,但它仍然给我提到我的所有问题,并在过去7天内更新.这还有很多.:)我想在评论中过去7天内提到的所有问题.
comment ~ currentUser() AND issueFunction in commented(“after -7d”)
Run Code Online (Sandbox Code Playgroud)
谢谢您的帮助!
您是否尝试过类似这样的查询?
(text ~ currentUser()) AND updatedDate >= -7d ORDER BY updated DESC
Run Code Online (Sandbox Code Playgroud)
它给了我在过去 7 天内的所有提及。但也在描述中提到(在这篇博文中找到)。
小智 3
我用这样的东西:
(summary ~ currentUser() OR description ~ currentUser() OR comment ~ currentUser()) AND updatedDate >= -7d
Run Code Online (Sandbox Code Playgroud)