CreateRecord
Add new records to your RushDB graph database with structured data and optional transaction support for atomic operations.
Instructions
Create a new record in the database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | The record data to insert | |
| label | Yes | Label for the record | |
| transactionId | No | Optional transaction ID for atomic creation |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "The record data to insert",
"type": "object"
},
"label": {
"description": "Label for the record",
"type": "string"
},
"transactionId": {
"description": "Optional transaction ID for atomic creation",
"type": "string"
}
},
"required": [
"label",
"data"
],
"type": "object"
}