Idea Summary
Enable developers to create cards that will represent master/child data
Use Case
We are migrating homegrown dotnet app which shows to user list of cards and inside every card - listview of child records of the specific parent that appears in the card body.
Example - present customer orders, one card per order with mininal order information and inside the order card - show current order lines (item+qty+shipping status). Preferably - allow it to be editable.
Preferred Solution (Optional)
Allow SQL statement with CURSOR or XMLAgg that returns child records for current parent line.
We would like to have APEX parse the SQL, identify parent and child columns from CURSOR/XMLAgg and allow it to be mapped.
Another option - allow us to use template directives that can loop over CURSOR field and not just split of a string.