Hi,
I have a problem. When I load entity(s) via dataManager.load I get all related entities (in a one-to-many relationship) even if they are not in the fetch plan.
For example:
val reports = dataManager
.load(Report::class.java)
.all()
.fetchPlanProperties("name")
.list()
Query returns “templates” in entities.
This bug causes problems with entity updates.
Regards
Marcin