Matías Hernán García

Results 18 comments of Matías Hernán García

No, this bug was found on previous version to the leaf feature. I updated it and it still happens. You can replicate this on the demo.

I found the problem, but I am not really sure which is the proper way to fix this. Since I have to render a really big tree, in the initial...

Nope, as I said before, all tree nodes from level 1 to the end had collapse on true

@sergeycooper Since I had a really big tree to render, I collapsed every single node on initialization. The issue was that I also collapsed the leaf nodes on initialization too,...

Although it has some perfomance issues to be solved when rendering a really big tree, I haven't found anything better. Let me know if you do :)

Maybe we can get some inspiration from this, will check it out https://github.com/Vincit/knex-db-manager/blob/master/lib/PostgresDatabaseManager.js

@jorgebodega Thanks for taking your time to answer. I am wondering if there is any way to force the persistence of the Entity and its relations at the moment of...

@jorgebodega Let's assume that I don't change the factories. I want them to NOT store values in the database. Just build the entities and its associations, nothing else. However, in...

I come from a Rails background, heavily using this factory gem called [FactoryBot](https://github.com/thoughtbot/factory_bot/blob/master/GETTING_STARTED.md) so maybe this is not possible in TypeORM nor with this lib.

@jorgebodega no worries. Just to clarify, in my codebase I temporarily replaced ``` define(Answer, (faker: typeof Faker) => { const answer = new Answer(); answer.answerer = factory(User)() as any; answer.answer...