apoc.coll.sortMaps
Function APOC Core
apoc.coll.sortMaps([maps], 'name') - sort maps by property
Usage Examples
The following sorts a list of maps in reverse alphabetical order by the key name
:
RETURN apoc.coll.sortMaps([
{name: "Lionel Messi"},
{name: "Cristiano Ronaldo"},
{name: "Wayne Rooney"}
], "name") AS output;
Output |
---|
|
The following sorts a list of maps in alphabetical order by the key name
:
RETURN apoc.coll.sortMaps([
{name: "Lionel Messi"},
{name: "Cristiano Ronaldo"},
{name: "Wayne Rooney"}
], "^name") AS output;
Output |
---|
|