delete_relation
Remove specific entity relations by specifying source, target, and relation type, enhancing data management on the libSQL-based server.
Instructions
Delete a specific relation between entities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | Yes | Source entity name | |
target | Yes | Target entity name | |
type | Yes | Type of relation |
Input Schema (JSON Schema)
{
"properties": {
"source": {
"description": "Source entity name",
"type": "string"
},
"target": {
"description": "Target entity name",
"type": "string"
},
"type": {
"description": "Type of relation",
"type": "string"
}
},
"required": [
"source",
"target",
"type"
],
"type": "object"
}