diff --git a/doc/asciidoc/algorithms-path-finding.adoc b/doc/asciidoc/algorithms-path-finding.adoc index f7e4d5023..e2c9aa7f4 100644 --- a/doc/asciidoc/algorithms-path-finding.adoc +++ b/doc/asciidoc/algorithms-path-finding.adoc @@ -25,6 +25,15 @@ The following path finding algorithms help find the shortest path or evaluate th * <> (`algo.randomWalk`) // end::summary[] +[WARNING] +==== +As of the 3.4.7.0 release, all the Shortest Path procedures assume that they are being executed on undirected graphs. +Therefore, the direction of a relationship can be ignored. + +If you are running these algorithms on a graph where the direction is important, you can use the `direction` parameter. +For example, `direction:"INCOMING"` or `direction:"OUTGOING"`. +==== + include::minimum-weight-spanning-tree.adoc[leveloffset=2] include::shortest-path.adoc[leveloffset=2]