In this code, how could I iterate over all the nodes in the ExecutionResult result?
CypherParser parser = new CypherParser(); ExecutionEngine engine = new Ex
Iterator columnAs = result.columnAs("n"); while(columnAs.hasNext()) { Node n = (Node)columnAs.next(); for (String key : n.getPropertyKeys()) { sysout("{ " + key + " : " + n.getProperty(key)+ " } "); }
This might help you out