
Documentation for GreenHopper 6.1.x. Documentation for other versions of JIRA Agile is available too.
GreenHopper is now called JIRA Agile. Learn more
.
Quick Filters allow you (or anyone else using this board) to further filter the collection of issues appearing in Work mode or Plan mode. By default, a board contains two Quick Filters, called 'Only My Issues' and 'Recently Updated':
| デフォルトのクイックフィルター | デフォルトの JQL | 注意 |
|---|---|---|
| 自分の課題のみ | assignee = currentUser() | 現在このボードが表示されている人に割り当てられた課題を表示します。 |
| 最近更新された課題 | updatedDate >= -1d | 24 時間以内に更新された課題を表示します。 |
必要に応じて、追加のクイックフィルターを作成できます。以下の例を参照してください。
Any additional Quick Filters that you create they will appear as buttons next to the 'Only My Issues' and 'Recently Updated' buttons on the board (see Using a Board).
ボードのクイックフィルターを編集する手順は、次のとおりです:
次の表と スクリーンショット 1 (下記) に示すようにクイックフィルターを編集します。
編集項目 | 操作方法 |
|---|---|
新規クイックフィルターを追加する | 青色エリアで、「名前」、「 JQL 」およびオプションの「説明」を入力し、「追加 」ボタンをクリックします。新規のクイックフィルターは、クイックフィルターの一番上に追加されます。 |
クイックフィルターの名前を変更する | スイムラインの「名前」エリアをクリックして、既存の名前を変更し、「更新」ボタンを押します。 |
クイックフィルターの JQL を変更する | スイムラインの「 JQL 」エリアをクリックして、既存の JQL を変更し、「更新」ボタンをクリックします。(提案については、以下の例を参照してください。) |
クイックフィルターを削除する | スイムレーンの右側にある「削除」ボタンをクリックします。 |
クイックフィルターを移動する | Hover over the vertical 'grid' icon, then drag and drop the Quick Filter up or down to its new position.
|
For JQL syntax, see the JIRA JQL documentation.
スクリーンショット 1 :「ボードの設定」画面 - 「クイックフィルター」タブ
クイックフィルターを設定する JQL の使用例:
" バグ修正 " グループのメンバーに割り当てられている課題をすべて表示する場合
assignee in membersOf("bugfix")
種類が「バグ」である課題すべてを表示する場合
type = "Bug"
For more details, see the JQL documentation.