Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Jira Query Language (JQL) Cheatsheet

Get Unassigned Tasks

assignee is EMPTY

Groups

Sometimes you need to mix both AND and OR conditions. This can be done with the use of braces.

The example below will fetch tasks that are not marked as done, and are assigned to "My Name" or are not assigned at all.

Status != "DONE" AND (assignee = "My Name" OR assignee is EMPTY)

Ordering

ORDER BY created DESC

One can add it after conditions like so:

Status != "DONE" ORDER BY created DESC
Last updated: 3rd March 2022
First published: 3rd March 2022

This blog is created by Stuart Page

I'm a freelance web developer and technology consultant based in Surrey, UK, with over 10 years experience in web development, DevOps, Linux Administration, and IT solutions.

Need support with your infrastructure or web services?

Get in touch