Information on how to use boolean operators in the KB search
The expected behavior for the Boolean operators and their arguments is as follows:
x AND y NOT z = x AND (y NOT z)x AND y OR z = (x AND y) OR zx OR y NOT z = x OR (y NOT z)x OR y AND z = x OR (y AND z)x NOT y OR z = (x NOT y) OR zx NOT y AND z = (x NOT y) AND z