Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ MATCH (n:Person)-[k:KNOWS {creationDate: 1268465841718}]->+(m:Person)
RETURN n,k,m
----

The more performant version uses a link:{neo4j-docs-base-uri}/cypher-manual/current/patterns/variable-length-patterns/#quantified-relationships[quantified relationship] (`-[]\->+`), which enables batching relationships into sets and then fetching their properties from the different shards, and this is not possible when using the old link:{neo4j-docs-base-uri}/cypher-manual/current/patterns/reference/#variable-length-relationships[variable-length relationship syntax] (`-[*1..]\->`).
The more performant version uses a link:{neo4j-docs-base-uri}/cypher-manual/current/patterns/variable-length-patterns/#quantified-relationships[quantified relationship] (`-[]\->+`), which enables batching relationships into sets and then fetching their properties from the different shards, and this is not possible when using the old link:{neo4j-docs-base-uri}/cypher-manual/current/patterns/reference/variable-length-paths/#variable-length-relationships[variable-length relationship syntax] (`-[*1..]\->`).

[NOTE]
====
Expand Down