GetRecord
Retrieve a specific record by its unique ID from the RushDB graph database to access stored data quickly.
Instructions
Get a specific record by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recordId | Yes | ID of the record to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"recordId": {
"description": "ID of the record to retrieve",
"type": "string"
}
},
"required": [
"recordId"
],
"type": "object"
}