
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':
| Default Quick Filter | Default JQL | Notes |
|---|---|---|
| Only My Issues | assignee = currentUser() | Displays issues assigned to the person who is currently viewing this board. |
| Recently Updated | updatedDate >= -1d | Displays issues that have been updated in the last 24 hours. |
You can create additional quick filters if you wish; see examples below.
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).
To edit a board's Quick Filters:
Edit the Quick Filters as described in the following table and Screenshot 1 (below).
To do the following: | Do this: |
|---|---|
Add a new Quick Filter | In the blue area, type the 'Name', 'JQL', and optional a 'Description', then click the 'Add' button. Your new Quick Filter will be added in the top Quick Filter position. |
Change the name of a Quick Filter | Click in the 'Name' area of the swimlane, modify the existing name and click the 'Update' button. |
Change the JQL of a Quick Filter | Click in the 'JQL' area of the swimlane, modify the existing JQL and click the 'Update' button. (See the examples below for some suggestions.) |
To delete a Quick Filter | Click the 'Delete' button at the right of the swimlane. |
To move a Quick Filter | 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.
Screenshot 1: the 'Board Configuration' screen — 'Quick Filters' tab.
Some example JQL you might wish to use for your Quick Filters:
Show all issues which are assigned to members of the "bugfix" group:
assignee in membersOf("bugfix")
Show all issues of type 'Bug':
type = "Bug"
For more details, see the JQL documentation.