我想创建一个问题过滤器,向我显示每个问题的评论数,然后按此排序。
我试过类似的东西:
project = "myProject" AND created >= 2012-06-01 AND created < 2012-08-01 ORDER BY count(comment)
我在 JIRA 4.2 上。我该怎么做呢?
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:
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"