AT:
- Variable Filter queries with multiple values and the != operator should have an AND - semantic
Hint:
The following two queries should return the same result:
[{
name: "a",
type: "String",
operator: "!=",
values: [1, 2]
}]
is equal to
[{
name: "a",
type: "String",
operator: "!=",
values: [1]
}, {
name: "a",
type: "String",
operator: "!=",
values: [2]
}]