Hi All,
I'm using a saved search filter to power my Agile boards. It is a rather complex set of ANDs and ORs as it combines information from three different projects. When I save the filter, however, Jira strips out all the parenthesis. I think I'm getting additional results because of it. Is there something I can do to preserve the exact search I entered instead of simplifying it? Thanks!
Hi Ari,
May we know that did the search result change? Because the AND operator actually connect 2 variables, so it is not necessary to have parentheses at all, the system just remove redundancy items to enhance the JQL search request.
For example, X1 OR (X2 AND X3) would be same with X1 OR X2 AND X3
Best Regards,
Steven
Really? are you joking on me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My opinion is that the parenthesis should not be stripped because they aid with readability. Especially, given not every user understands this functionality.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could save them as separate filters and then combine them using the following query:
filter = "filter 1" OR filter = "filter 2"
It would be easier to read, understand the results and to troubleshoot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So JQL just implies parens on either side of the AND statement? Confusing but acceptable. Just makes things a bit harder to read. Thanks Steven. My problem must be elsewhere.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ari,
Can you let us know the exact JQL on your filters in order to enable us to see how Jira strips out all the parenthesis?
Best Regards,
Steven
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Steven - thanks for getting back to me. The actual query (slightly obfuscated to remove personal info) should be:
project = "Dev Platform" OR (project = "Splunk Server" AND assignee in (username1, username2, username3, username4)) OR (project = "Microsoft Apps" AND component = Palette)
But when I save, Jira flattens it to:
project = "Dev Platform" OR project = "Splunk Server" AND assignee in (username1, username2, username3, username4) OR project = "Microsoft Apps" AND component = Palette
Any thoughts?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.