jahudka
jahudka
I'm currently starting a new project and considering Mikro. In a couple of other projects at our company we're using TypeORM and although I've had my fair share of issues...
@sebastiaanviaene I think you can already do this..? Maybe not via the `populate` _argument_, but the `em.populate()` _method_ accepts a `FilterQuery` as its third argument (basically a `WHERE` clause, same...
> Actually the way to do it is via the populate argument, there it works automatically. If you go with dedicated em.populate() call, then you need to pass the child...
> Nope, the first one is not a valid query, you are mixing populate with where condition, those are separate things. Actually I don't think I am - `findAll()`, according...
Looking at the `EntityLoader` you mentioned makes me think the [`initialiseCollections()` method](https://github.com/mikro-orm/mikro-orm/blob/master/packages/core/src/entity/EntityLoader.ts#L168) might be the ticket
> I am talking about what you put inside the populate property Yeah, me too! When I wrote: ```typescript em.getRepository(Author).findAll({ populate: { book: { title: { $like: 'Life of %'...
If it's not a single method then the call site needs to know which method to call for a given relationship, which means the call site either needs to be...
@maticzav The idea is simple: programming languages usually provide a mechanism for dealing with errors or exceptions and in JavaScript, like so many others, that mechanism is `try .. catch...
I find it hard to wrap my head around this.. - The only way to configure the editor is apparently to _modify a package export_ shared by _all_ the editor...
I think this may be caused by differences between Bootstrap v5.1.x and Bootstrap v5.2.x. I'm unfortunately stuck on v5.1.3 because that's what the Symfony EasyAdmin bundle supports.