neo4j-rstats / neo4r

A Modern and Flexible Neo4J Driver
https://neo4j-rstats.github.io/user-guide/
Other
106 stars 30 forks source link

Feature Request: neo4j_api$new() Defaults #53

Open Btibert3 opened 5 years ago

Btibert3 commented 5 years ago

As a user that is developing locally, when I look at ?neo4j_api, I see this as the example:

neo4j_api$new(url = "http://localhost:7474", user = "neo4j", password = "password")

As I believe this is a common pattern and set of credentials, I expected to run:

con <- neo4j_api$new()

to authenticate and then

con$ping()

to return a 200.

Basically, unless the user supplies values as they would for something beyond local dev efforts, it might be easier to have the defaults set for quick authentication.

This is a feature request, not a bug.