apoc.convert.toMap
Function APOC Core
apoc.convert.toMap(value) | tries it’s best to convert the value to a map
Usage Examples
Convert node to map
CREATE (node:Node {id: 4})
RETURN apoc.convert.toMap(node) AS output;
output |
---|
{id: 4} |
Was this page helpful?