From fffd00d514494d2eee567a8ddfa73ac0733c5442 Mon Sep 17 00:00:00 2001 From: zrguo <49157727+LarFii@users.noreply.github.com> Date: Thu, 26 Dec 2024 14:55:22 +0800 Subject: [PATCH] Update graph_visual_with_neo4j.py --- examples/graph_visual_with_neo4j.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/graph_visual_with_neo4j.py b/examples/graph_visual_with_neo4j.py index 7377f21c..35ef85a8 100644 --- a/examples/graph_visual_with_neo4j.py +++ b/examples/graph_visual_with_neo4j.py @@ -62,7 +62,7 @@ def main(): e.displayName = node.id REMOVE e:Entity WITH e, node - CALL apoc.create.addLabels(e, [node.entity_type]) YIELD node AS labeledNode + CALL apoc.create.addLabels(e, [node.id]) YIELD node AS labeledNode RETURN count(*) """