Hi,
I was wondering if it's possible to map relations between objects that come from different requests and if so how? Here's an example of what I'm trying to achieve:
Let's say there's a Project object that contains Task objects. Do get all the details of a project I make the following request:
project/12.json, which returns a name and a description
Now when I want to retrieve that tasks for this project I use the following request:
project/12/tasks.json, giving me all the tasks for this project.
I'm using Core Data for persistence, but I have no idea how to make the relations between project and tasks and I can't find any example. Any help would be welcome!