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

时光毁灭记忆、已成空白 提交于 2019-12-10 13:57:34

问题


Is there any way to find all issues updated by particular user in particular time period in every day by using JQL or is there any plugin to solve this?.


回答1:


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.




回答2:


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




回答3:


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

You can create a filter which will update daily.



来源:https://stackoverflow.com/questions/30828009/filter-issues-updated-by-particular-user-in-period-of-time-using-jql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!