docs: not in filter operator
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kolaente 2024-10-29 12:05:57 +01:00
parent d8371c7a8b
commit 8c138595a2
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -39,16 +39,17 @@ All strings must be either single-word or enclosed in `"` or `'`. This extends t
The available operators for filtering include:
| | |
|--------|-------------------------------------------------------|
| `!=` | Not equal to |
| `=` | Equal to |
| `>` | Greater than |
| `>=` | Greater than or equal to |
| `<` | Less than |
| `<=` | Less than or equal to |
| `like` | Matches a pattern (using wildcard `%`) |
| `in` | Matches any value in a comma-separated list of values |
| | |
|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `!=` | Not equal to |
| `=` | Equal to |
| `>` | Greater than |
| `>=` | Greater than or equal to |
| `<` | Less than |
| `<=` | Less than or equal to |
| `like` | Matches a pattern (using wildcard `%`) |
| `in` | Matches any value in a comma-separated list of values |
| `not in` | Matches any value not in a comma-separated list of values. Please note this syntax does not work with Typesense, [due to limitations in the query language](https://github.com/typesense/typesense/issues/2038). |
To combine multiple conditions, you can use the following logical operators: