Jira JQL: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 40: Line 40:


==ORDER BY==
==ORDER BY==
{{https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-24}}


<syntaxhighlight lang='text'>
<syntaxhighlight lang='text'>

Revision as of 20:22, 29 June 2020

External

Internal

Overview

Fields

Fields

Functions

Functions Reference

Time Functions

Also see Time Format.

startOfDay()

endOfDay()

startOfWeek()

startOfMonth()

startOfYear()

Relative Time Comparison

updated >= "-1d"

Operators

Operators Reference

~

The "~" operator is used to search for issues where the value of the specified field matches the specified value in either an exact match or a "fuzzy" match. The operator can be used with text fields only.

ORDER BY

Template:Https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-24

[...] ORDER BY updatedDate

Examples

status = Closed AND assignee = currentUser() ORDER BY updated DESC
updated > startOfDay(-1d) AND timeSpent > 0 AND assignee = ofeodorov ORDER BY updatedDate ASC
project = FDIS AND assignee = currentUser() AND resolution = Unresolved AND sprint = "Sprint 8, 1/4" ORDER BY updated DESC