Is it faster find a node by id function
MATCH (i:Item) WHERE id(i) = 2345 RETURN i
or by a property indexed?
MATCH (i:Item { name: "Foo"}) RETURN i
Profiling these queries I saw
Find by id is always faster, as it directly points to the node-record.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With