简体   繁体   中英

Filter issues updated by particular user in period of time using JQL

有没有办法通过使用JQL找到特定用户在每天特定时间段内更新的所有问题,还是有任何插件可以解决这个问题?

If by updated you mean change of status you can chack something like this:

status changed by "user.name" and updated > startOfDay("-1")

Of course the start of the day -1 shows everything updated since yesterday, but you can also go with hours.

You could run a query like this:

reporter = usernameGoesHere AND created > startOfDay() and created < "2015/06/18 15:00"

So I had one ticket that I created at 2:20. Running this query gave me all issues created from the start of today and then queried out the results that were created before 6/18 at 3:00PM

Let me know if this helps you out.

You can also look at the Advanced Filtering page for JIRA

assignee = 'your user' AND updated > startOfDay() 

您可以创建一个每日更新的过滤器。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM