When I try to initiate and connect with a new driver and run "npm run test 01"
I get test fails.
I checkout the git checkout 01-connect-to-neo4j and add my uri, user, password and run npm run test 01 and it passes.
So I copied the entire file ...
I am stumped here -
Trying to do a simple match on Node labels.
I copied DIRECTLY from the cypher manual https://neo4j.com/docs/cypher-manual/current/clauses/match/#match-with-labels
the code
MATCH (n:Movie|Person)RETURN n.name AS name, n.title ...
I did follow those instructions.
I just copied and pasted from the other branch - and got it to work that way. There are differences in the code that may explain the first one failing - but those changes were not part of the assignment - specifi...
My apologies: you are correct - I left out some details
Course is:
Building Neo4j Applications with Node.js
set up the neo4j.js file
in terminal - npm run test 01
> neoflix-api-node@0.1.0 test> node --experimental-vm-modules node_mod...