My unfinished work
Issues assigned to you that are not in the Done status category.
assignee = currentUser() AND statusCategory != Done ORDER BY updated DESCA free tool for Jira
Build a JQL query for the work you need to see. Pick a search, add your project key, and paste it into Jira.
No login or Jira connection. Your project key stays in this tab and isn’t saved.
Starlie brings Jira search to a native Mac window, with JQL autocomplete and syntax highlighting. Find an issue, open it, and get back to work.
7-day free trial. Paid app after the trial.
These recipes use Jira Cloud syntax. Paste a query into Jira’s advanced (JQL) search to run it. Results depend on your permissions and available fields.
Issues assigned to you that are not in the Done status category.
assignee = currentUser() AND statusCategory != Done ORDER BY updated DESCUnfinished issues in any started, incomplete sprint. Requires Jira Software’s sprint field; this can include multiple sprints and boards.
sprint IN openSprints() AND statusCategory != Done ORDER BY updated DESCUnfinished issues with no assignee, newest first. Add a project key to focus on your team’s backlog.
assignee IS EMPTY AND statusCategory != Done ORDER BY created DESCUnfinished issues due before today, earliest due first. Excludes issues due today and issues with no due date.
due < startOfDay() AND statusCategory != Done ORDER BY due ASCUnfinished issues last updated at least seven days ago. This measures the last update, not time spent in a status.
updated <= "-7d" AND statusCategory != Done ORDER BY updated ASCRecently created issues, newest first. Includes completed work so you can see everything that came in.
created >= "-7d" ORDER BY created DESCCustom statuses are fine. The Done status category includes completed statuses in your workflow, even if your team calls them “Closed” or “Shipped.”
Dates follow Jira’s configured timezone. “Before today” uses the start of the day; “-7d” is a relative seven-day window.
A project key is not a project name. This tool accepts a letter followed by letters, numbers, or underscores. It cannot check whether a project exists or whether you can access it.
For more complex searches, see Atlassian’s JQL field reference and JQL function reference.