Hello!
I am trying to connect my Neo4j server with Python ( GDS_client) in Google Colab in the following ways:
host = "neo4j://<server_ip>:<port>" #Also tried neo4j_url = "bolt://<my_neo4j_server_ip>:7687" and "bolt://<server_ip>:<port>
user = "neo4j"
password= "xxxxxx"
gds = GraphDataScience(host, auth=(user, password))
But I get the following error: UnableToConnectError: Unable to retrieve routing information
Please am I missing something?
I came across this link: Google Colab but they use Aura, which I am not using.
Does anyone has an example of a connection with the Neo4j server in Google colab, please?