tigergraph__delete_edge
Delete a specific edge between two vertices in a TigerGraph graph. Specify source and target vertex types and IDs to remove the relationship permanently.
Instructions
Delete a single edge (relationship) from a TigerGraph graph.
Use When: • Removing a specific relationship • Disconnecting two vertices • Graph maintenance
Quick Start:
{
"source_vertex_type": "Person",
"source_vertex_id": "user1",
"edge_type": "FOLLOWS",
"target_vertex_type": "Person",
"target_vertex_id": "user2"
}Warning: • Operation is permanent • Does not delete the vertices, only the edge
Related Tools: delete_edges, add_edge, has_edge
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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 edge. | |
| graph_name | No | Name of the graph. If not provided, uses default connection. | |
| source_vertex_id | Yes | ID of the source vertex. | |
| target_vertex_id | Yes | ID of the target vertex. | |
| source_vertex_type | Yes | Type of the source vertex. | |
| target_vertex_type | Yes | Type of the target vertex. |