[!JIRADL:_Images^jira_ninja.png!]
[!JIRADL:_Images^agile_ninja.png!]
Hey there! This page is no longer being maintained, but we've created some new and improved resources to replace it. Head on over to our Quickstart site to check them out.
One of the most powerful features of JIRA is it's advanced search functionality. Once you populate your demo instance with some issues, you can try using the JIRA Query Language to locate them.
assignee = currentUser() AND status not in (Resolved,Closed)
Returns all issues assigned to you that are not Resolved or Closed.
issuekey in votedIssues()
Returns all issues that you have voted on.
reporter != currentUser() and issuetype != Bug
Returns all issues that were not reported by you and whose issue type is not Bug.
Check out the JQL documentation to read about all the functions and operators you can use.