Skip to content

Commit

Permalink
Missing ^ in the example for ascending order
Browse files Browse the repository at this point in the history
  • Loading branch information
bartgut authored and JMHReif committed Apr 22, 2022
1 parent 5671b0c commit ee85a64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee85a64

Please sign in to comment.