I have the following JSON which I like to map in restkit.
{
"objects": [
{"name": "John Doe",
"contacts": [
"/url/to/contact/1/",
]
}
}
Is it possible in RestKit to map this directly, combined with Core Data, in which case if the contact with id 1 exists do not follow the url to retrieve the contact. What is the best way to make this work?