79085975

Date: 2024-10-14 11:32:40
Score: 0.5
Natty:
Report link

Make sure you are pointing to the same database in python as well as the driver:

DB = "<your DB consistent with the one you're executing against in browser>"

with neo4j.GraphDatabase.driver(URI, auth=AUTH) as driver:
   with driver.session(database=DB) as session:
      session.run(query)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pybynumbers