Hi, I'm trying to use the built in ORM to access mongoDb. I've enabled ORM in config, setup a model with the correct inheritance and call ::find() in my rest controller. All I get though is "Database type not defined in mongo configuration". I have no problem accessing mongo directly.
What am I doing wrong? Is ORM compatible with Mongo?
Digging deeper, I am finding that it is expecting a 'type' property in the db connection (no specs for that) and it would use that to lookup a corresponding /core/classes/database/<db>/connecton.php. There is not mongo database there, just mysql, mysqli and pdo.
So it looks like ORM is not hooked up to mongo and I can't use it. Is that true?