tigergraph__drop_query
Remove an installed query from a TigerGraph graph to clean up unused or outdated queries, including test queries, or to prepare for reinstalling a modified version. This action permanently deletes the query.
Instructions
Drop (delete) an installed query from TigerGraph.
Use When: • Removing queries no longer needed • Cleaning up test queries • Before re-installing a modified query
Quick Start:
{
"query_name": "oldQuery"
}Warning: • Permanently deletes the installed query • Cannot be undone • Any code calling this query will fail
Tips: • Use 'show_query' first to review before dropping • Cannot drop queries being used by other queries
Related Tools: install_query, show_query, is_query_installed
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 | No | Name of the graph. If not provided, uses default connection. | |
| query_name | Yes | Name of the query to drop. |