Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get RestKit to properly map relationships where the property might contain either a nested object or an object ID?

The API I'm currently working with often returns deep cyclical object graphs where multiple occurrences of the same object are replaced with the object's ID.

A simple example:

Nested

[
    {
        id: 1,
        title: "Post Title",
        category: {
            id: 1,
            name: "Category Title"
        }
    },
    {
        id: 2,
        title: "Post Title",
        category: 1
    }
]

Since the replacement can happen at any level manually fixing the JSON before mapping is not very practical.

share|improve this question
I asked almost the same question – Kronusdark Mar 7 at 17:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.