tigergraph__drop_graph
Deletes a TigerGraph graph and all its associated data, schema, and jobs. Use this action carefully as it is permanent and irreversible.
Instructions
Drop (delete) a graph and its schema from the TigerGraph database. This permanently removes the graph, its schema, and all data.
Use When: • Removing a graph that's no longer needed • Cleaning up test graphs • Starting fresh with a new schema
Quick Start:
{
"graph_name": "TestGraph"
}Warning: DANGER: • This deletes EVERYTHING: schema, vertices, edges, queries, loading jobs • Operation is PERMANENT and cannot be undone • Double-check the graph_name before executing • Consider using 'clear_graph_data' if you only want to remove data
Tips: • Use 'list_graphs' first to confirm the graph name • For production graphs, always backup first • To keep schema but clear data, use 'clear_graph_data'
Related Tools: create_graph, clear_graph_data, list_graphs
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. | |
| graph_name | Yes | Name of the graph to drop. |