Reveal
The Reveal tool is a way to step through a Cypher statement step-by-step to understand how it executes. Reveal focuses on stepping through the Cypher syntax itself, primarily by re-writing the Cypher statement progressively to include more and more of the syntax. As each additional piece of Cypher is executed, nodes and relationships are added to a graph visualization to show how the additional piece of Cypher affects the results.
Reveal does not currently map Cypher syntax to the actual query plan, where Cypher syntax gets transformed into Operators (https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/operators/). You will still need to use the PROFILE and EXPLAIN keywords in Neo4j Browser, Workspace, or UPX if you want to analyze Cypher execution in this way (https://neo4j.com/docs/cypher-manual/current/planning-and-tuning/).