How to make embedded hasMany relationships work with ember data
On master, the correct API is: App.Adapter.map(‘App.Post’, { comments: { embedded: ‘always’ } }); The two possible values of embedded are: load: The child records are embedded when loading, but should be saved as standalone records. In order for this to work, the child records must have an ID. always: The child records are embedded … Read more