Set up Jira Software Cloud
Learn how to set up Jira Software Cloud and integrate it with other products and applications.
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:
project = JSW AND (fixVersion in unreleasedVersions() or fixVersion is empty
(assignee = currentUser() or reporter = currentUser()) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
(team = ateam or team = dreamteam or team = engineroom) AND (fixVersion in unreleasedVersions() or fixVersion is empty)
fixVersion = earliestUnreleasedVersion(PROJECT KEY)
Was this helpful?