You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""MATCH (from_node: TestType) WHERE from_node.id = params.__from_node_id MATCH (to_node: ComplexType) WHERE to_node.id_part1 = params.__to_node_id_part1 AND to_node.id_part2 = params.__to_node_id_part2
220
-
OPTIONAL MATCH (from_node)-[rel: RELATED_TO]->(to_node)
221
-
FOREACH (x IN CASE WHEN rel IS NULL THEN [1] ELSE [] END |
222
-
CREATE (from_node)-[rel: RELATED_TO]->(to_node) SET rel += params.__rel_properties)
223
-
FOREACH (i in CASE WHEN rel IS NOT NULL THEN [1] ELSE [] END |
224
-
SET rel += params.__rel_properties)
225
-
""",
216
+
MERGE (from_node)-[rel: RELATED_TO]->(to_node) SET rel += params.__rel_properties""",
0 commit comments