Map params with Merge or build a Batch operation via the client?
问题 Is there any way to map params passed in using Merge? Ideally, this is what I want to do: Merge node (create if not exists, or update the entire node properties - which are dynamic) MERGE (c:Label {Id : {map}.Id}) SET c = {map} This can be done easily when the map is a single object and you are only updating a single node, but I would love to be able to do this as a bulk operation. Pass in List and have that auto map. Granted, I don't think this is currently possible using Cypher Merge, but