tigergraph__is_query_installed
Check whether a specified query exists in a TigerGraph graph without executing it. Returns a boolean to confirm installation status.
Instructions
Check if a query is installed in TigerGraph without running it.
Use When: • Verifying query installation • Before trying to run an installed query • Conditional query logic
Quick Start:
{
"query_name": "getPersonFriends"
}Tips: • Returns true/false • Faster than trying to run and catching errors • Use before 'run_installed_query'
Related Tools: install_query, run_installed_query, show_query
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 check. |