How to specify remote server while creating connection in neo4j using dotnet.
var client = new GraphClient(new Uri("http://localhost/db/data"), "neo4j", "Pass@123");
This is working.
But when I specify IP Address it is throwing error.
var client = new GraphClient(new Uri("http://192.168.2.255:7474/db/data"), "neo4j", "Pass@123");
This is not working.