I have a custom filter written in JQL with several consecutive AND statements combined with != due to the required field to search does not support list use like (A,B,C).
I need to add another AND condition but that condition must also contain another AND operator. Something like:
... AND (component != R AND type != S) AND...
The above is for reference to what I'm trying and is not valid JQL.
Is this possible?