apoc.coll.sortText
Function APOC Core
apoc.coll.sortText(coll) sort on string based collections
Usage Examples
The following sort a list of strings:
// n.b. if no locale is provided it takes the default of the machine where neo4j is running on
RETURN apoc.coll.sortText(['Єльська', 'Гусак'], {locale: 'ru'}) as output;
Output |
---|
Гусак |
Єльська |
Was this page helpful?