I got a DB table that contain an attribute that point to its parent node and it also has navigation property "_toSubTasks" and "_toParent". And for this table, there is an OData Service for it.
Example: Task { task_id, parent_task_id, ....}
For each task, we can get its direct sub tasks, but each sub task can also have its own sub tasks. How to get all sub tasks that with all hierarchy level(direct sub tasks and the sub tasks of sub tasks) and display with UI5 tree table?