apoc.map.fromLists
Function APOC Core
apoc.map.fromLists([keys],[values])
Usage Examples
The following creates a map from keys and values lists:
RETURN apoc.map.fromLists(
["name", "dob"],
["Cristiano Ronaldo", date("1985-02-05")]
) AS output;
Output |
---|
|
Was this page helpful?