Good morning.
This question is for the Android environment. I use ADT.
I need to implement a Carriage table and a Manufacturer table in Parse. Car has the model and manufacturer fields. The Manufacturer table has the Name field. In addition to the fields quoted, each table has the default Parse fields.
Basically, what I need is for the manufacturer field in the Carriage table to contain a reference to ObjectID in the Manufacturer table.
Purpose: My app will display a list with the car model and the name of its manufacturer.
That is, I need in a single HttpGet call to "join" the tables, so that the return json brings me everything I need at once.
Note: I do not use the Parse SDK, I'm implementing the "on hand" calls, passing the header parameters with the KEYS on each call.
I need to, please: Know how to create these tables; Know how to test the call by the CONSOLE API on the Parse website; know how to make HttpGet call in Java (Android)
Thank you very much, everyone!