neo4j-rstats/neo4r

Feature Request: neo4j_api$new() Defaults

Btibert3 opened this issue · 0 comments

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.