8

課題ごとのコメント数を表示し、それで並べ替える課題フィルターを作成したいと思います。

私は次のようなことを試しました:

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

JIRA4.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 に答える