
Documentation for GreenHopper 5.7.x . Documentation for other versions of JIRA Agile is available too.
GreenHopper is now called JIRA Agile. Learn more
.
A Rapid View shows issues belonging to a saved JIRA filter. When you used GreenHopper for the first time, you created (or chose) a Rapid View via the 'Quick Start' box on the 'Welcome' screen:
Before you can create a new Rapid View, you must have access to at least one saved JIRA filter (either your own filter, or one that someone else has shared with one). If you don't, first create and save a new filter in JIRA.
To create a new Rapid View:
Congratulations — you have created a new Rapid View!
Next steps:
Screenshot: creating a new Rapid View
Some example JQL you might wish to use for your Saved Filter:
Select all issues which are Unscheduled or in an Unreleased Fix Version:
project = GHS AND (fixVersion in unreleasedVersions() or fixVersion is empty
Select all issues you are interested in:
(assignee = currentUser() or reporter = currentUser()) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Show all issues that you have participated in and have been updated in the last week. This requires the JIRA Toolkit Plugin.
updatedDate > -7d AND Participants = currentUser()
Select all issues for a team (using a Label custom field named 'Team')
(team = ateam or team = dreamteam or team = engineroom) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Only select my bugs for a bugfix team
project = GHS AND team = bugfix AND issuetype = bug AND (fixVersion in unreleasedVersions() or fixVersion is empty)
Try fixVersion = earliestUnreleasedVersion(PROJECT KEY) to see all issues in the next Fix Version to be released:
fixVersion = earliestUnreleasedVersion(PROJECT KEY)
Refer to JIRA's Advanced Searching guide for your detailed JQL reference.
Let your imagination run wild and please comment below with your best JQL suggestions to help us learn what you are looking for.