thingdom/node-neo4j

Seems to have issues with Node 12.7 While 12.4 works great

jrgleason opened this issue · 1 comments

I have the following code...

var neo4j = require('neo4j'),
  db = new neo4j.GraphDatabase({
    url: conf.connectionString
  });
if(db.cypher){
  console.log("Worked");
}
else{
  console.log("Didn't work");
}

This works fine under 12.4 but fails in 12.7 (using Windows 10). Can someone confirm? Any idea what may cause this?

Hey @jrgleason, sincere apologies for missing this issue! Just saw it now.

My first guess would be that in the Node version switch, the dependencies also changed, and with Node 12.7, you were using node-neo4j v1 instead of v2.

Is this still happening for you? Or did it resolve itself?