apoc.map.fromLists
Function
apoc.map.fromLists(keys [String], values [Any])
- creates a map from the keys and values in the given lists.
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?