apoc.convert.toStringList
Function APOC Core
apoc.convert.toStringList(value) | tries it’s best to convert the value to a list of strings
Usage Examples
Convert list of values to list of strings
return apoc.convert.toStringList([1, "2", 3, "Four"]) AS output;
Output |
---|
["1", "2", "3", "Four"] |
Was this page helpful?