Skip to content

Commit 6f9433b

Browse files
authored
docs: Elaborate on notContains IS NULL check behavior
1 parent 60f8f28 commit 6f9433b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/content/API-Reference/Query-Format.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,17 @@ The opposite operator of `contains`. It supports multiple values.
206206
}
207207
```
208208

209+
This opertor adds `IS NULL` check to include `NULL` values unless you add `null` to `values`.
210+
For example:
211+
212+
```javascript
213+
{
214+
member: "Posts.title",
215+
operator: "notContains",
216+
values: ["ruby", null]
217+
}
218+
```
219+
209220
### <--{"id" : "Filters Operators"}--> startsWith
210221

211222
The `startsWith` filter acts as a case-insensitive `LIKE` operator with a

0 commit comments

Comments
 (0)