In this code, how could I iterate over all the nodes in the ExecutionResult result?
CypherParser parser = new CypherParser(); ExecutionEngine engine = new Ex
for (Map row : result) { Node x = (Node)row.get("x"); for (String prop : x.getPropertyKeys()) { System.out.println(prop +": "+x.getProperty(prop)); } }