Hello,
I'm trying to create fresh MetaModels items in my custom extension. I searched through all interfaces, but I can't find something like this:
$factory = \MetaModels\Factory::getDefaultFactory();
$model = $factory->getMetaModel('mm_cooltable');
$item = $model->create();
// do something
$item->save();
I only find methods for returning existing items (findById, findByFilter etc.), but nothing in the direction I'm looking for. Are there any other places to look for something like MetaModel::create() or does it simply not exist?