Hi there,
i can connect a python driver to the neo4j database. when i put a cypher command such as adding new nodes in python and execute it, the neo4j database will automatically get updated .
but if i want to display the latest neo4j graphs in browser by typing cypher query: match (n) show (n) in python , how would the neo4j graphs in browser automatically return me a updated graph, without me typing match (n) show (n) in the neo4j browser? or sometimes the cypher query is about showing path in python (MATCH (start:Node {content: 'a'}), (end:Node {content: 'f'}) CALL apoc.algo.allSimplePaths(start, end, '>', 3) YIELD path
RETURN (path); ) i understand that python will return me the path in list or text forms, but is it possible at the same time that to have the neo4j browser get updated and display the selected path graphs in neo4j browser instead of me going back to neo4j browser, manually typing the show path cypher query and press enter and then neo4j browser will show me the selected path graphs.
are there any ways from python driver to neo4j browser or neo4j bloom that after a cypher execution in python, and the neo4j browser will automatically refresh and execute on its own in the browser and display the new graphs if my cypher query is about returning paths/returning graphs ?
any help will be appreciated!