here's the mapping for the price of one of the item
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hi Hairulnizam,
If you have needed data for this list in several collections you should combine items from several collections into single response and then use this response to populate the list:
So brief plan is:
Create generic service. Details are here: http://devcenter.appery.io/documentat...
In this generic service - you can invoke as much other services as you need.
Get all results from all needed services and combine them into one response.
Return this response in success/complete events.
Use generic service to populate your list.
Also here is one more way - to use server code. In this case solution is:
Create server code. Details: http://devcenter.appery.io/documentat...
In this server code - get all needed data from different collections, combine this data on single response and then return it.
Create server code service and use this service to populate your list.
Regards.