5

According to the Atlassian documentation, you can search for words contained in a text field like so:

description ~ term

It also indicates you can group terms like so:

description ~ (term OR "different thing")

But when I try that, it shows that the syntax is wrong.

I want to do this, but with grouping (because I will have more than 2 terms, and I'd like to keep the query easy to read and short-ish):

description ~ term OR description ~ "different thing"
snollygolly
  • 1,858
  • 2
  • 17
  • 31

3 Answers3

3

description doesn’t support lists...

enter image description here

description doesn’t support = operator....

enter image description here

I think you already have the best answer to your question with JQL, by using....

description ~ “term” OR description ~ “different thing”

Although, a list method would work for the priority field, the list option isn’t available for every field...

enter image description here

  • Thanks for the supporting screenshots. Based on their documentation, it seems like it should work, but it clearly does not. Thank you! – snollygolly Mar 06 '19 at 19:01
1

This appears to do what you want:

description ~ ("term OR different thing")
petroica
  • 139
  • 1
  • 3
  • 14
0

Actually the multi-text match search phrase that worked for me was this example:

text ~ "(uc55 OR uc60 OR UC65)"
KeithS
  • 1