I have a neo4j database ready and I want to make a java app for retrieving data from it. How can I load this already made database in my program and then query it? In the code I'm giving below I want to initialize the db object with that database.
thanks in advance
ExecutionEngine engine = new ExecutionEngine(db);
String query = "";
ExecutionResult result = engine.execute( query);