batch_delete_nodes
Delete up to 50 entities and their connected edges in one atomic call (all succeed or all fail).
Nodesatomic. Validation pass rejects the entire batch before any
mutation lands.
Arguments
node_idsarrayrequiredArray of node IDs to delete (max 50)
Returns
Shape
{ deleted, edges_removed, count }Examples
Live call against the Notion example graph.
Input
{
"node_ids": [
"1c051617-6cb7-4a59-b0a1-7779f404145b"
]
}Output
{
"deleted": [
{
"id": "1c051617-6cb7-4a59-b0a1-7779f404145b",
"title": "Real-time multi-cursor collaboration"
}
],
"edges_removed": 10,
"count": 1
}