jira - ghdrako/doc_snipets GitHub Wiki

  • Jira Work Management (JWM)
  • Jira Software (JSW) and
  • Jira Service Management (JSM) projects
  • Jira Cloud platform REpresentational State Transfer (REST) application programming interface (API) functionality

Projects within Jira fall into three closely related but distinct classes of products. These are JWM, JSW, and JSM.

Jira Query Language (JQL)

A query has three basic parts: fields, operators, and values.

  • Field – Fields are different types of information in the system. Jira fields include priority, fixVersion, issue type, etc.
  • Operator – Operators are the heart of the query. They relate the field to the value. Common operators include equals (=), not equals (!=), less than (<), etc.
  • Value – Values are the actual data in the query. They are usually the item for which we are looking.
  • Keyword – Keywords are specific words in the language that have special meaning. In this post we will be focused on AND and OR.
assignee = currentUser()
assignee=captainjoe
creator  = N140xxxx
project = "TEST"
created > startOfYear() 
updated > startOfMonth()
text ~ "pre-landing report"
text ~ "Jira Software"       # Find all issues that contain the words Jira and Software, in no particular order
text ~ "\"Jira Software\""   # Find all issues that contain the phrase Jira Software  - order id importnt
status=resolved
status IN ("To Do", "In Progress", "Closed")
status changed to "Closed" after -2d
priority in (Blocker, Critical)
assignee is EMPTY and created < -1d  # issues are unassigned and have not been updated in the last day