MemoryMesh

delete_edges

Remove specified edges from the MemoryMesh knowledge graph by defining the edge type, source, and target nodes.

Instructions

Delete multiple edges from the knowledge graph

Input Schema

NameRequiredDescriptionDefault
edgesYesArray of edges to delete

Input Schema (JSON Schema)

{ "properties": { "edges": { "description": "Array of edges to delete", "items": { "description": "Edge to delete", "properties": { "edgeType": { "description": "The type of the edge", "type": "string" }, "from": { "description": "The name of the node where the edge starts", "type": "string" }, "to": { "description": "The name of the node where the edge ends", "type": "string" } }, "required": [ "from", "to", "edgeType" ], "type": "object" }, "type": "array" } }, "required": [ "edges" ], "type": "object" }
ID: kf6n6221pd