apoc.convert.toBooleanList
Function APOC Core
apoc.convert.toBooleanList(value) | tries it’s best to convert the value to a list of booleans
Usage Examples
Convert list of values to list of booleans
return apoc.convert.toBooleanList(["true", 0, 1.1]) AS output;
Output |
---|
[TRUE, FALSE, TRUE] |
Was this page helpful?