I am testing the module within a meteor app, but I can't get further from instanciating the GraphDatabase Class.
const neo4j = require('neo4j');
const GraphDB = new neo4j.GraphDatabase('http://neo4j:neo4j@localhost:7474');
//getting this object
{
url: 'http://neo4j:neo4j@localhost:7474',
auth: { username: 'neo4j', password: 'neo4j' },
headers: { 'User-Agent': 'node-neo4j/2.0.0-RC2' },
proxy: undefined,
agent: undefined
}
As you can see I can't call any methods on this object as it does contain none.
Am I missing something?