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?