When working with nested populate queries in MikroORM with MySQL, I am faced with the challenge of selecting 100 fields while wanting to exclude around 20 fields. It would make more sense to leave out those 20 fields, similar to using db.find().select("-password")
in MongoDB. However, the documentation only seems to cover Partial Fetches for selecting fields, not unselecting them.