apoc.coll.sortText
Function
apoc.coll.sortText(coll [String], conf Map<String, Any>)
- sorts the given list of strings into ascending order.
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?