Hi All,
I am connecting to Neo4j Database in Python script like below:
from py2neo import Graph
graph = Graph(uri,auth=(user,password))
graph.run() or graph.evaluate() running for CREATE/MERGE statements.
There is no close() method with Graph(). GraphDatabase.driver is not feasible because needs to change a lot inside the script.
Please let me know how to close the connection from the connection pool at the end of the Python script for graph = Graph() Neo4j connection. Thanks.