Hello all,
I found this topic through Google. I have a similar problem.
I have a tree structure, with an arbitrary (dynamic) number of levels. Ex, an entity A which has a "children" relation which is a Set<A>.
Is there a way to load the entire tree with a single request in Request Factory?
I can't use the solution proposed in this discussion (with("child.grandchild...")) because I don't know in advance how many levels the tree will have. All I know is that it's a tree (no cycles) and that I may assume it's small enough to be downloaded in a HTTP request and stored locally on the client, in memory.
Thank you!