I'm having a little bit more complex data structure resulting in a deeply nested graph. Right now I'm always fetching/reloading through root queries. However I think this is not the best way since it always requires the server to resolve the whole tree.
Is it possible to fetch / reload additional data/edges of sub edges in an nested graph in a second request without traversing the whole tree?
If yes how?
Eg: I have a
RootQuery Spaces
+ ... Other Layers
+ Project
+ Edge Tasks
+ Edge SubTasks
+ Edge Assigned User
Showing the Project list I'm not loading Tasks on initial request. If the user opens a Project I'd like to lacy load the tasks of only this project, without reloading the parent/root or the whole tree starting from the RootQuery.