We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dca20aa + fa21be0 commit 8bf7a32Copy full SHA for 8bf7a32
src/Api/Filter.php
@@ -37,7 +37,7 @@ public function toArray()
37
];
38
}
39
40
- if ($this->operator === 'IN') {
+ if ($this->operator === 'IN' || $this->operator === 'NOT_IN') {
41
return [
42
'propertyName' => $this->property,
43
'operator' => $this->operator,
@@ -76,4 +76,4 @@ protected function translateOperator($operator): string
76
'not like' => 'NOT_CONTAINS_TOKEN'
77
], strtolower($operator), $operator);
78
79
-}
+}
0 commit comments