At the moment, properties that are lists can only be compared using the operators:
=, <>, IN, NOT IN, LIKE or NOT LIKE.
The reasons for that is that for positive operators, for instance "=",
is true if there exists at least one prop = foo
and the negative operator:
is true if there isn't any property = foo (which is NOT the same as saying that there exists at least one prop <> foo).
But for other operators, like > or <, the semantics is not completely clear and thus not implemented.
Labels:
None