Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/content/docs/build/reference/deta-base/queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ You need to consider the following when querying on keys:
- The keys must be strings hence the operation values **must** also be strings.
- The [contains](#contains) and [not-contains](#not-contains) operators **are not supported**.
- The [`AND`](#and) and [`OR`](#or) operations for different query values **are not supported**.
- The max number of OR operations or query objects in a list is 25.

For e.g. **the following queries are invalid**:

Expand All @@ -189,4 +190,4 @@ For e.g. **the following queries are invalid**:
// different OR key queries (invalid query)
[{"key?pfx":"a"}, {"key?pfx": "b"}]
}
```
```