Jason Dobry

Results 170 comments of Jason Dobry

At this point, it seems to me that "soft delete" is too close to "perform a particular update" to warrant a library implementation. In addition, when it comes to data,...

Re-opening, and changing the scope of the issue to: Update docs to show how one might use implement "soft delete" with js-data.

The latest js-data is v2.5.0, the latest js-data-angular is v 3.1.0. Use those.

In that case, can you create a plunker that demonstrates the issue?

Possibly. js-data-angular itself is really just a small amount of "angular" sugar around js-data. Here's an example of Angular 1.x + JSData 3.x: https://github.com/js-data/js-data-examples/tree/master/client/angular1

Change this: ``` angular.module('ps.users.services', ['ngResource']); ``` to this: ``` angular.module('ps.users.services', ['ngResource', 'js-data']); ```

Thanks for the link, I'll take a look

Your demo uses a `skipCache` option, but neither js-data nor js-data-angular have such an option.

`refreshAll()` is the same as `findAll(null, { bypassCache: true })`

You have to do it yourself, something like this: ``` js function handleResponse( response ) { var Resource = DS.definitions.userSettings; var data = Resource.deserialize( Resource, response ); // Inject the...