如何获取最近两周内打开的已完成商品的状态

时间:2018-08-22 07:42:34

标签: jira jira-agile

我找不到与我类似的问题,所以这就是问题。 我有一个查询,该查询提供了过去两周内所有已打开和更新的项目。 我想通过获取过去两周内所有已关闭项目的状态并关闭来使其更加有用。 我不在乎其他先前打开过的封闭物品。

直到现在,我仍无法获得合适的查询结果...

1 个答案:

答案 0 :(得分:1)

To find all the tickets that were opened within the last two weeks:

createdDate > -2w

now to filter only those that are closed extend the query to:

createdDate > -2w and resolution is not EMPTY

To find the statuses simply use the list view instead of detailed view and include the Status column (should be visible by default).