Base
Query | Fetching Data
Query your data with ease.
Basic Queries
Query Operators
The following operators can be used to create complex queries:
Operator | Description | Example |
---|---|---|
?ne | Not equal | {"age?ne": 25} |
?lt | Less than | {"age?lt": 25} |
?gt | Greater than | {"age?gt": 25} |
?lte | Less than or equal | {"age?lte": 25} |
?gte | Greater than or equal | {"age?gte": 25} |
?pfx | Prefix | {"name?pfx": "Jo"} |
?r | Range | {"age?r": [18, 30]} |
?contains | Contains | {"tags?contains": "javascript"} |
?not_contains | Not contains | {"tags?not_contains": "python"} |