10 / 56 · 18 Test Management Tools · JQL Queries← prev⊞ allnext →☰ Read as one page
2.2JQL Basics
Structure
field operator value [AND/OR field operator value]
[ORDER BY field ASC/DESC]
Common Operators
| Operator | Meaning | Example |
|---|---|---|
= |
Equals | status = "Open" |
!= |
Not equals | status != "Closed" |
in |
In a list | priority in (Critical, High) |
not in |
Not in a list | status not in (Done, Closed) |
~ |
Contains (text search) | summary ~ "checkout" |
>, <, >=, <= |
Comparison | created >= "2024-01-01" |
is EMPTY |
Field has no value | assignee is EMPTY |
is not EMPTY |
Field has a value | assignee is not EMPTY |
was |
Historical value | status was "In Progress" |
changed |
Field was modified | priority changed |