data
data copied to clipboard
A lightweight reactive data library for web applications. Designed over composable primitives.
The RequestManager paradigm is simply that any request starts by providing `FetchOptions`. These may be built programmatically (for instance for relationships or collections that return `links` information from the API),...
Goal should be to get it consuming schemas for simple fields, resources, and unpaginated collections
Currently [Store](https://github.com/emberjs/data/blob/7ef07ee3334a9099f9242aae8298ccaab528c744/packages/store/src/-private/store-service.ts#L102) extends from `EmberObject`. This is one of the last few entanglements EmberData has with the Ember framework directly. We would like to [RFC](https://github.com/emberjs/rfcs#ember-rfcs) deprecating any inherited EmberObject methods...
we should publish a codemod for converting apps to use strict relationship definitions
**In order to enable a granular migration** - `field` replaces `attr` and moves serialize/deserialize logic to the new location - `resource` replaces `belongsTo` and exposes a RelationshipDocument, no more async...