public static void analyzeSchema() throws FrameworkException {
final App app = StructrApp.getInstance();
final GraphDatabaseService graphDb = app.command(GraphDatabaseCommand.class).execute();
final NodeServiceCommand nodeServiceCommand = app.command(CreateNodeCommand.class);
final ConfigurationProvider configuration = Services.getInstance().getConfigurationProvider();
final Set<NodeInfo> nodeTypes = new LinkedHashSet<>();
final Map<Long, TypeInfo> nodeTypeInfoMap = new LinkedHashMap<>();
final Set<RelationshipInfo> relationships = new LinkedHashSet<>();
final Map<String, SchemaNode> schemaNodes = new LinkedHashMap<>();