You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for taking the time to take a look at this. I just updated and I'm getting a new error when I try to hit the database. In my package.json I have "neo4j": "^2.0.0-RC2".
I'm executing a MERGE and get the following error:
[Error][uncaughtException][neo4j.ClientError: 401UnauthorizedresponseforPOST/db/data/transaction/commit: {"errors": [{"code": "Neo.ClientError.Security.AuthorizationFailed","message": "No authorization header supplied."}]}
Can you console.log your process.env.NEO4J_SERVER, NEO4J_USER, and NEO4J_PASS right before you pass them to the GraphDatabase constructor?
Obv. don't paste anything sensitive here =), but can you confirm that NEO4J_SERVER looks like 'http://something:7474', NEO4J_USER looks like 'neo4j', and NEO4J_PASS looks like 'password'?
Also, to see if it's a bug with passing a {username, password} object for auth, can you try passing the 'username:password' directly as a string instead?
Thanks for taking the time to take a look at this. I just updated and I'm getting a new error when I try to hit the database. In my package.json I have
"neo4j": "^2.0.0-RC2"
.I'm executing a MERGE and get the following error:
Here is my configuration:
And here is the query I'm using:
The text was updated successfully, but these errors were encountered: