Multiple Batch Get Items with different Tables.Handling table references
( I am new to this, please correct me if I am wrong)
I had a case here.
=> Table2 has reference attribute of primary key Table 1.
=> Table3 has reference attributes from primary keys Table1, Table2.
branches{name, location,......},
users{id, name,branchid.....},
orders{id, userid,branchid,..........}
I have a situation if hit order web service(api), I need to show both user data , branch data along order data.
(Is there any direct facility to get this using vogels??)
To achieve my need, should I write multiple API calls or should I save duplicate in other tables???
similar to #182 (Retrieve Items From Multiple Tables)