Actually I was having the problem of Graph with pycharm, I opened it with Visual Studio Code and the ImportError of Graph is gone, but I have the problem of append, it shows:
tx.append("CREATE (person:Person name: $name) RETURN person", name=name)At...
Hi, I am trying to run an example of Using Neo4j from Python - Developer Guides using py2neo, so the code is:
from py2neo import Graph
graph = Graph()
tx = graph.begin()
for name in ["Alice", "Bob", "Carol"]:
tx.append("CREATE (person:Person nam...