From ee85a640d2068cd40040eed57d722c2e5457793c Mon Sep 17 00:00:00 2001 From: Bartosz Gutowski <45165958+bartgut@users.noreply.github.com> Date: Thu, 7 Apr 2022 23:56:51 +0200 Subject: [PATCH] Missing ^ in the example for ascending order --- .../modules/ROOT/partials/usage/apoc.coll.sortNodes.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/asciidoc/modules/ROOT/partials/usage/apoc.coll.sortNodes.adoc b/docs/asciidoc/modules/ROOT/partials/usage/apoc.coll.sortNodes.adoc index 29eb354888..86f5990116 100644 --- a/docs/asciidoc/modules/ROOT/partials/usage/apoc.coll.sortNodes.adoc +++ b/docs/asciidoc/modules/ROOT/partials/usage/apoc.coll.sortNodes.adoc @@ -29,7 +29,7 @@ The following sorts a collection of nodes by the `name` property in ascending or ---- MATCH (person:Person) WITH collect(person) AS people -RETURN apoc.coll.sortNodes(people, 'name') AS output; +RETURN apoc.coll.sortNodes(people, '^name') AS output; ---- .Results