// second step: analyze schema of newly created nodes, skip existing ones (structr & spatial)
try (final Tx tx = app.tx()) {
// register transaction post process that rebuilds the index after successful creation
TransactionCommand.postProcess("reloadschema", new ReloadSchema());
// analyze nodes
for (final Node node : Iterables.filter(new StructrAndSpatialPredicate(false, false, true), GlobalGraphOperations.at(graphDb).getAllNodes())) {
final NodeInfo nodeInfo = new NodeInfo(node);