Skip to content
Tools/Edges/batch_delete_edges

batch_delete_edges

Delete up to 50 edges in one atomic call (all succeed or all fail).

Edgesatomic. Validation pass rejects the batch before any mutation lands.

Arguments

edge_idsarrayrequired

Array of edge IDs to delete (max 50)

Returns

Shape
{ deleted, count }

Examples

Live call against the Notion example graph.

Input

{
  "edge_ids": [
    "8a3b23fd-172e-4151-8283-aee40eeb4c0d"
  ]
}

Output

{
  "deleted": [
    {
      "id": "8a3b23fd-172e-4151-8283-aee40eeb4c0d",
      "type": "opportunity_drives_solution"
    }
  ],
  "count": 1
}

See Also