Jira JQL: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://confluence.atlassian.com/jiracorecloud/searching-for-issues-765593657.html
* [https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-764478330.html Advanced searching]
=Internal=
=Internal=


Line 4: Line 9:


=Overview=
=Overview=
=Fields=
{{Internal|JIRA_Concepts#Fields|Fields}}


=Functions=
=Functions=
Line 18: Line 26:
===startOfMonth()===
===startOfMonth()===
===startOfYear()===
===startOfYear()===
==Relative Time Comparison==
updated >= "-1d"
=Operators=
{{External|[https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-operators-reference-764478341.html 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==
{{External|https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-24}}
<syntaxhighlight lang='text'>
[...] ORDER BY [...] DESC|ASC
</syntaxhighlight>
* created
* updatedDate
* priority
* assignee


=Examples=
=Examples=
Line 26: Line 57:


  project = FDIS AND assignee = currentUser() AND resolution = Unresolved AND sprint = "Sprint 8, 1/4" ORDER BY updated DESC
  project = FDIS AND assignee = currentUser() AND resolution = Unresolved AND sprint = "Sprint 8, 1/4" ORDER BY updated DESC
Mid-Sprint Addition Query
assignee = 00000000 AND Sprint = 111 AND "Mid-Sprint Addition?" = Yes AND (status = CLOSED OR status = Closed-Verified)
Search for epics with a certain name
type = EPIC and project = BLUE and summary ~ serialization

Revision as of 00:49, 26 August 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

https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-24
[...] ORDER BY [...] DESC|ASC
  • created
  • updatedDate
  • priority
  • assignee

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

Mid-Sprint Addition Query

assignee = 00000000 AND Sprint = 111 AND "Mid-Sprint Addition?" = Yes AND (status = CLOSED OR status = Closed-Verified)

Search for epics with a certain name

type = EPIC and project = BLUE and summary ~ serialization