For example, I want to find all issues with "python" or "Python" in the summary, description, or comments. This works:
(description ~ "python" OR summary ~ "python" OR comment ~ "python")
but it's pretty inelegant. My pythonic brain instinctively tried:
"python" in (description, summary, comment)
but that's a syntax error.
Can you form a shorter JQL to find all issues with "python" or "Python" in the summary, description, or comments.
Hi Tim,
One option is to use "text ~" - which searches all text fields.
More information on text searches here: https://confluence.atlassian.com/jiracoreserver/search-syntax-for-text-fields-939937723.html
Ste
Thanks @Inactive Stephen, that's what I was looking for!
For others looking for a description of what this "text" field is, here's the link:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.