guillaumervls/backbone-jsonapi

TO DO : Support arrays in links

Opened this issue · 0 comments

Like in this example :

{
  "links": {
    "posts.comments": "http://example.com/comments/{posts.comments}"
  },
  "posts": [{
    "id": "1",
    "title": "Rails is Omakase",
    "links": {
      "comments": [ "1", "2", "3", "4" ]
    }
  }]
}