I have tried profiling the following simple cypher query:
profile match (a:A)-[r:R]->(b:B) return *
The plan is as follows:
NodeByLabelScan. According to neo4j statistics, it is clear the first step, NodeByLabelScan cardinality can be estimated wi...