EXPLAIN
See the query plan without executing. Shows the compiled operator pipeline: scan, filter, project, sort steps.
Syntax#
EXPLAIN <any query>Example#
EXPLAIN MATCH (n:Person) WHERE n.age > 25 RETURN n.name ORDER BY n.ageReturns the compiled operator pipeline: scan, filter, project, sort steps.
See Also#
- WorldCypher Overview — all operators
Try it
Open ↗⌘↵ to run
Loading engine…