8

我想创建一个问题过滤器,向我显示每个问题的评论数,然后按此排序。

我试过类似的东西:

project = "myProject" AND created >= 2012-06-01 AND created < 2012-08-01 ORDER BY count(comment)

我在 JIRA 4.2 上。我该怎么做呢?

4

1 回答 1

9

The easiest way I can think of is to use the JIRA Toolkit Plugin (by Atlassian) which will add a custom field for counting comments:

number_of_comments_field

Than you could use the JQL to sort by the number of comments. For example, if the custom field is called Comments count, use the following query:

project = "myProject" AND created >= 2012-06-01 AND created < 2012-08-01 ORDER BY "Comments count"

于 2012-08-05T07:46:23.727 回答