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