Hi, try increasing the transaction timeout on the server side.https://neo4j.com/docs/operations-manual/current/monitoring/transaction-management/#transaction-management-transaction-timeoutAlternatively or on top try batching your insertions, i.e., mu...
Yep. That's what I though. flow what not the function you thought it was. Your screenshots suggest you're wokring in a jupyter notebook or similar. It's quite easy to trip over overwritten global variables. Especially if you don't exeute the cells to...
Thanks. Yeah, you've correctly identified that it's coming from that line. So let's try to find out what's going wrong. What output do you get if you put print(flow, type(flow)) right before line 10 (session.execute_write(flow,path=flow_file))?Also, ...
I'm asking because what I can't see is if the error really originated from session.execute_write(flow,path=flow_file) or some other place. Then (should it really be that line) please also double-check that the variable flow really contains what you t...