SHOW CURRENT GRAPH TYPE

Generic Description

Inspect the graph type bound to the current graph context.

Simple example:

SHOW CURRENT GRAPH TYPE

Consumer-Level Explanation

Use SHOW CURRENT GRAPH TYPE when the query must inspect the graph type bound to the current graph context and the planner needs to see that operation as part of the Cypher row pipeline. Keep the clause explicit because it controls row grain, variable scope, and what later clauses are allowed to reference.

More Detailed Explanation

This statement is about type introspection of the current graph context, which matters in systems that care about declared graph structure rather than only ad hoc labels and properties.

What this clause is really for:

Advanced Example

This example keeps SHOW CURRENT GRAPH TYPE inside a complete query pipeline so the clause boundary, visible variables, and returned row shape are clear to planner tooling.

SHOW INDEXES

Real Use Cases

Real Limitations And Tradeoffs