}
@Override
public ElementCounter dump(SubGraph graph, Writer writer, Reporter reporter, Config config) throws Exception {
try (Transaction tx = db.beginTx()) {
SimpleGraphMLWriter graphMlWriter = new SimpleGraphMLWriter(db);
graphMlWriter.write(graph, writer, reporter, config);
tx.success();
}
return reporter.getTotal();
}