Hello! Please, I created a Neo4j AuraDB database where I have dumped the movie recommendation dataset. I am able to start and connect to the instance in the cloud. However, when I try to connect to the instance via its API in R Studio, using the neo4r package and the following code:
I also get the following error message in my console:
Error in function (type, msg, asError = TRUE) :
Could not resolve host: 8
I do not know why the error is happening, as I have previously connected to a Neo4j sandbox instance from within R Studio without any hassle. As always, I will appreciate your helpful suggestions. Thanks!
According to GitHub - neo4j-rstats/neo4r at dev it only supports http and https. The curl command to neo4j+s://..fails because curl does not support this type of URL.
I can connect/resolve URL via port 7474 though but this probably does not help.