tigergraph__delete_edges
Delete multiple edges from a TigerGraph graph in one operation. Specify the edge type and a list of source and target vertex pairs to permanently remove relationships.
Instructions
Delete multiple edges (relationships) from a TigerGraph graph.
Use When: • Removing multiple relationships • Bulk edge deletion • Graph restructuring
Quick Start:
{
"edge_type": "FOLLOWS",
"edges": [
{"from_type": "Person", "from_id": "u1", "to_type": "Person", "to_id": "u2"},
{"from_type": "Person", "from_id": "u2", "to_type": "Person", "to_id": "u3"}
]
}Warning: • Operation is permanent and cannot be undone • Does not delete vertices
Related Tools: delete_edge, add_edges
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| edges | Yes | List of edges with source and target vertex IDs. | |
| profile | No | Connection profile name. Omit to use the active default profile. Use 'list_connections' to see available profiles. | |
| edge_type | Yes | Type of the edges. | |
| graph_name | No | Name of the graph. If not provided, uses default connection. |