js-data-firebase
js-data-firebase copied to clipboard
Firebase adapter for js-data.
It seems like when we do a `findAll` with some query conditions, it will load the whole data from that collection and filter them on the client side. This is...
This is due to this specific part of the code inside the update() method: ``` javascript itemRef.once('value', dataSnapshot => { try { let item = dataSnapshot.val() || {}; let fields,...
Right now js-data bind method binds the scope to the datastore but not the adapter model which in the case of firebase doesn't make it very sexy I propose that...
This is related to the #20 , because the same problem that arrives when trying to delete the data, also happens when you try to update the firebase data from...
I'm not sure if it's on purpose. But I thought that by defining a resource as belonging to another resource using the property `parent: true` It would behave as in...