public static void importCypher(final List<String> sources) throws FrameworkException {
final App app = StructrApp.getInstance();
final GraphDatabaseService graphDb = app.command(GraphDatabaseCommand.class).execute();
final ExecutionEngine engine = new ExecutionEngine(graphDb, new BufferingLogger());
// nothing to do
if (sources.isEmpty()) {
return;
}