Say I have two Neo4j databases in a project and I need to switch back and forth between them. Currently, on the desktop application, I open and close the databases manually and re-run:
driver = GraphDatabase.driver(uri, auth=("neo4j", "password"))
Is...