Working with py2neo and I'm getting the error below when trying to append a transaction:
statement ="MERGE (a:Person {name:\""+actorName+"\"}) "\
"\n"\
"MERGE (b:Series {title:\""+actorsFields[3]+"\", year:\""+actorsFields[5]+"\"}) "\
"\n"\
"CREATE UNIQUE (a)-[:ACTED_IN]->(b)"\
"RETURN a,b"
print(statement)
tx.append(statement)
The traceback is:
Traceback (most recent call last):
File "/Volumes/PyCharm CE/PyCharm CE.app/Contents/helpers/pydev/pydevd.py", line 2222, in <module>
globals = debugger.run(setup['file'], None, None)
File "/Volumes/PyCharm CE/PyCharm CE.app/Contents/helpers/pydev/pydevd.py", line 1648, in run
pydev_imports.execfile(file, globals, locals) # execute the script
File "/Users/Thibault/PycharmProjects/movieGraph/src/mainCypher.py", line 110, in <module>
tx.append(statement)
File "/Library/Python/2.7/site-packages/py2neo/cypher/core.py", line 220, in append
self.__assert_unfinished()
File "/Library/Python/2.7/site-packages/py2neo/cypher/core.py", line 192, in __assert_unfinished
raise Finished(self)
py2neo.error.Finished
any ideas?