Thank you for the excellent work on this library.
I am trying to optimize the performance of the findAll() method in CrudListener. My goal is to return lightweight objects (or entities with lazy-loaded relations) to populate the Grid.
The issue is that the Edit form needs the fully initialized entity (with deep relations) to work correctly. Currently, the form seems to rely on the object provided by findAll().
What is the best pattern to implement a “re-fetch” or “load details” operation only when the user triggers the edit action?