FindProperties
Search and filter properties in the RushDB database using specific criteria, with options to limit results, skip records, and sort output.
Instructions
Find properties in the database using a search query
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of properties to return | |
| orderBy | No | Sorting configuration: key = field, value = asc|desc | |
| skip | No | Number of properties to skip | |
| where | No | Search conditions for finding properties |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of properties to return",
"type": "number"
},
"orderBy": {
"additionalProperties": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"description": "Sorting configuration: key = field, value = asc|desc",
"type": "object"
},
"skip": {
"default": 0,
"description": "Number of properties to skip",
"type": "number"
},
"where": {
"description": "Search conditions for finding properties",
"type": "object"
}
},
"required": [],
"type": "object"
}