I have a lot of relationships and nodes that I need to add to a Neo4j database with a create function. The function first creates a lot of nodes by parsing parameters and basically using this query:
UNWIND $props AS map
CREATE (n)
SET n = map
SET n:L...