Jira JQL cheat sheet
JQL life hacking
Use a Jira filter
In Jira, define a search that retrieves exactly the set of issues you need;
Use the “Save as” to save it as a filter. Give the filter a meaningful name, like: “Open stories”.
Use this JQL inside the Jira snapshots macro: filter=”Open stories“
All issues in a project
For all issues in a project “Space ship” with project key PKEY, use any of these JQLs inside the Jira snapshots macro:
project=PKEY
project=”Space ship”
All open issues in a project
Typically, open issues in Jira will be those for which the ‘Resolution’ field is not set. Assuming that the project “Space ship” with project key PKEY, Use any of these JQLs:
project=PKEY AND resolution != Unresolved
project=PKEY AND resolution != Unresolved