Hi,
I have a problem building a large Entity Fetch involving inheritence using Prefetchs Paths.
Here's the kind of structure that causes the problem.
I have entities ParentA with child ChildA and ParentB with Child ChildB and a 1-n relation between ParentA and ParentB (ParentA is the group, ChildB a sub-group, ParentB an individual, and ChildB a sub-individual)
The corresponding PDM can be found at the following URL:
I'd like to fetch an element of type ChildA together with all the corresponding ChildB.
I though Polymorfic fetches could help but I can't find the paths I need:
There is a Prefetch path between ParentA or ChildA and ParentB, similarly there is one between ParentB or ChildB and ParentA, but there is no Paths between ParentA/ChildA and ChildB.
So I can fetch ChildA with corresponding ParentB but I can't reach ChildB.
Am I missing something?