Lists graph definitions registered in the catalog.
SHOW GRAPHS [LIKE '<pattern>']
## Overview Returns a result set listing all graph definitions registered in the current session's graph definition registry. Each row includes the graph name, entity reference, vertex table, edge table, key columns, and whether the graph is directed. ## Behavior - Returns columns: graph_name, entity_ref, vertex_table_ref, vertex_id_column, edge_table_ref, source_column, target_column, directed. - When LIKE is specified, the pattern is converted to a regular expression and applied case-insensitively against the graph name. Only matching graphs are included in the result. - The command reads from the local graph definition registry on the compute node. It does not query the control plane. - If no graphs are registered, an empty result set is returned. ## Compatibility SHOW GRAPHS is a DeltaForge extension. It complements the CREATE GRAPH and Cypher query features of the graph engine.
-- List all registered graphs
SHOW GRAPHS;
-- Filter graphs by name pattern
SHOW GRAPHS LIKE '%social%';
-- Find graphs whose names start with 'network'
SHOW GRAPHS LIKE 'network%';