Skip to content

Commit 06aef88

Browse files
seems to work
1 parent d22525f commit 06aef88

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

modules/ROOT/pages/patterns/shortest-paths.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,11 @@ RETURN length(p) AS result
7979
// end::patterns_shortest_paths_shortest_k[]
8080

8181
[TIP]
82-
Note that this and the following examples in this section use a quantified relationship `-[:LINK]-+`, which is composed of a relationship pattern `-[:LINK]-` and a postfix quantifier `+`. The relationship pattern is only concerned with following relationships with type `LINK`, and will otherwise traverse any node along the way. There is no arrowhead `<` or `>` on the relationship pattern, allowing the pattern to match relationships going in either direction. This represents the fact that trains can go in both directions along the `LINK` relationships between Stations. The `+` quantifier means that one or more relationships should be matched. For more information, see xref:patterns/reference.adoc#quantified-relationships[Syntax and semantics - quantified relationships].
82+
Note that this and the following examples in this section use a quantified relationship `-[:LINK]-+`, which is composed of a relationship pattern `-[:LINK]-` and a postfix quantifier `+`.
83+
The relationship pattern is only concerned with following relationships with type `LINK`, and will otherwise traverse any node along the way.
84+
There is no arrowhead `<` or `>` on the relationship pattern, allowing the pattern to match relationships going in either direction.
85+
This represents the fact that trains can go in both directions along the `LINK` relationships between Stations.
86+
The `+` quantifier means that one or more relationships should be matched. For more information, see xref:patterns/reference.adoc#quantified-relationships[Syntax and semantics - quantified relationships].
8387

8488
.Result
8589
[role="queryresult",options="header,footer",cols="m"]

0 commit comments

Comments
 (0)