tigergraph__gsql
Execute GSQL commands for administrative tasks and schema modifications on TigerGraph. Use for DDL and admin operations, not data queries.
Instructions
Execute a GSQL command on TigerGraph. Use this for administrative tasks (e.g., creating users, granting roles) or schema modifications (e.g., CREATE VERTEX). Do NOT use this for running data queries (SELECT statements) - use run_query instead. Example: CREATE USER alice WITH PASSWORD 'password' or LS.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | GSQL command to execute. | |
| 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. |