I'm trying to use Ember-Data and the provided RESTAdapter to load an object like this :
{
"videos":[
{
"id":"5062f3c30959c6c732000005",
"tags":[
{"_id":"5062f3cb0959c6c732000006","name":"hello"},
{"_id":"5062f3cb0959c6c732000007","name":" world"}
]
}
]
}
Here I have a video object that has many tags. The tags attribute is declared as embedded :
Video = DS.Model.extend {
tags: DS.hasMany('Tag', {embedded: true})
}
Tag = DS.Model.extend {
video: DS.belongsTo('Video')
}
When I try to load video with
Video.find()
The adpter always try to send a get request to my server at /tags which naturally fails because my server doesn't give acces to tags directly. Instead, tags are already embedded in the /videos.json.
So what is the meaning of embedded: true in ember-data association ?