apoc.meta.cypher.types
Function APOC Core
apoc.meta.cypher.types(node-relationship-map) - returns a map of keys to types
Usage Examples
RETURN apoc.meta.cypher.types({
item1: 2,
item2: datetime(),
item3: "Michael"
}) AS output;
output |
---|
{item2: "DATE_TIME", item1: "INTEGER", item3: "STRING"} |
Was this page helpful?