Searching Jira efficiently with its query language
- Jul 27, 2024
- 1 min read
Jira has it owns query language called the Jira Query Language (JQL). If you’re like me you probably type in a phrase an expect it to return results that are similar to the phrase, as we would expect from other search providers like Google or any other software. However, the default in Jira is a literal, exact match. So if you search for
bootyou will only get back
rubber bootor
boot heelIf you want to find
bootstrapyou use syntax like
Text ~ "boot*"or
Text ~ "*strap"

Comments