GetRecordsByIds
Retrieve multiple database records using their unique identifiers. This tool fetches specific records from RushDB by providing an array of record IDs.
Instructions
Get multiple records by their IDs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recordIds | Yes | Array of record IDs to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"recordIds": {
"description": "Array of record IDs to retrieve",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"recordIds"
],
"type": "object"
}