I'm currently working with knowledge graphs with Neo4j using Python Driver. I'm already connected to localhost
URI = "neo4j://localhost:7687"
AUTH = ("neo4j", "neo4j")
with GraphDatabase.driver(URI, auth=AUTH) as driver:
driver.verify_connectivity()
driver: Driver = GraphDatabase.driver(URI, auth=AUTH)
Now I would like to display the results as a graph of some queries like the following:
query = 'MATCH (n)-[r]->(c) where r.filePath = "../data/mydata.json" RETURN *'
driver.execute_query(query)
From what I understood, python driver does not interact directly with neo4j browser. So which is the best way to show the resulting Graph?