Hello,
We are using the QueryBuilder to load existing queries, and some of them have lots of individually grouped conditions, like the following:
((fieldA = "test") OR (fieldA = "test1") OR (fieldA = "foo") OR
(fieldA = "bar") OR (fieldA = "alpha") OR (fieldA = "alpha") OR
(fieldA = "beta") OR
(fieldA = "omega")
)
It seems like once there are 6 groups total, there can be no more, so the QueryBuilder lumps the remaining conditions into an AND at the bottom of the builder. Which is not correct, because this query only uses ORs, and it is bad for us to show it like this when that does not match the query at all.
Is there a way to allow the builder to group all of these conditions properly? Or to be able to raise the group limit so this does not happen?
Thank you,
KS