Is there some ember-data alternative framework that can work with 'bootstrap resources'?
When my ember application loads, it downloads initial data from 'bootstrap' resource. That resource contains some basic information - for examle resource returns list of books and each book contains only title and author name. As user navigates to some book, I'd like to download more info about that book and show it.
The problem is that I'd like to have only single model representation of the book (to avoid synchronizaion between some BookModel and BookInfoModel).
So basically what I want is some BookModel which keeps information that it is only partially loaded(from bootstrap resource) and if I request BookModel itself, it's load the rest from server.
Is that somehow possible?