tigergraph__show_graph_details
Show details of a specific TigerGraph graph, including schema, queries, loading jobs, and data sources. Optionally filter by detail type (schema, query, loading_job, data_source) for targeted information.
Instructions
Show details of a specific graph. By default shows everything (schema, queries, loading jobs, data sources). Use 'detail_type' to show only a specific category.
Use When: • You need a full picture of a graph (schema + queries + jobs) • Starting work with a graph (call this first!) • Checking which queries or loading jobs are installed • Debugging schema or job issues
Quick Start:
{ "graph_name": "SocialNetwork" }(Shows everything under the graph)
Filter by category:
{ "graph_name": "SocialNetwork", "detail_type": "query" }Options: 'schema', 'query', 'loading_job', 'data_source'
Tips:
• No detail_type → shows all (GSQL LS output)
• For structured JSON schema, use 'get_graph_schema' instead
• For just graph names, use 'list_graphs'
• For vector attributes, use 'list_vector_attributes' instead
Related Tools: get_graph_schema (schema JSON), list_graphs (names only), list_vector_attributes (vector attribute details)
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. | |
| detail_type | No | Which details to show. Options: 'schema' (vertex/edge types), 'query' (installed queries), 'loading_job' (loading jobs), 'data_source' (data sources). If not provided, shows everything (equivalent to GSQL LS). |