Hello,
I made a project database in Neo4j Desktop and ran some queries in Neo4j Browser. Now I'm trying to add a couple nodes via Node.js running a JavaScript file, but it's not working. Here's the code in the JavaScript file:
const neo4j = require('neo4j-driver');
const driver = neo4j.driver(
'neo4j://localhost:7687',
neo4j.auth.basic('neo4j', 'neo4j')
);
const session = driver.session()
session.run('CREATE (n1:flashcard {English: "Hello"}), (n2:flashcard {English: "Goodbye"})');
session.close();
driver.close();
I'm not sure that I have the right URI in neo4j.driver()
. Where am I supposed to get it? I ran :sysinfo
in the browser and it listed the database name as neo4j and the address as localhost:7687, which is what I put.