For the code below how do I get the username and password. From enter link description here
var driver = neo4j.driver("bolt://localhost", neo4j.auth.basic("neo4j", "123456"));
var session = driver.session();
Is it my ID when I login?
or is it the database name and password?
I tried both ways still having trouble.

