• Products
  • Documentation
  • Resources

Example JQL queries for board filters

You can use a JQL filter to make a board that shows the relevant issues based on whatever criteria you want. JQL is a flexible yet robust logic that can be used in a variety of different ways. Learn more about the power of JQL queries.

However, you don’t need to start from scratch. Here’s some common simple queries to get you started:

Select all issues that are unscheduled or in an unreleased fix version

project = JSW 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)

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 bug fix team

project = JSW AND team = bugfix AND issuetype = bug AND (fixVersion in unreleasedVersions() or fixVersion is empty)

Show all issues in the next fix version to be released

fixVersion = earliestUnreleasedVersion(PROJECT KEY)

Additional Help