MemoryMesh

delete_metadata

Remove specified metadata from nodes in the MemoryMesh knowledge graph. Input an array of deletions to clean up or update node data efficiently.

Instructions

Delete specific metadata from nodes in the knowledge graph

Input Schema

NameRequiredDescriptionDefault
deletionsYesArray of metadata deletions

Input Schema (JSON Schema)

{ "properties": { "deletions": { "description": "Array of metadata deletions", "items": { "description": "Metadata deletion", "properties": { "metadata": { "description": "An array of metadata to delete", "items": { "description": "Metadata item to delete", "type": "string" }, "type": "array" }, "nodeName": { "description": "The name of the node containing the metadata", "type": "string" } }, "required": [ "nodeName", "metadata" ], "type": "object" }, "type": "array" } }, "required": [ "deletions" ], "type": "object" }
ID: kf6n6221pd