Handling Metadata Along with the records returned from your store, you'll likely need to handle some kind of metadata. Metadata is
Pushing Records into the Store One way to think about the store is as a cache of all of the records that have been loaded by your application
Introduction Models are objects that represent the underlying data that your application presents to the user. Different apps will have very
Finding Records The Ember Data store provides an interface for retrieving records of a single type.
Defining Models A model is a class that defines the properties and behavior of the data that you present to the user. Anything that the user
Creating, Updating and Deleting Creating Records You can create records by calling
Customizing Serializers In Ember Data, serializers format the data sent to and received from the backend store. By default, Ember Data serializes
Customizing Adapters In Ember Data, the Adapter determines how data is persisted to a backend data store, such as the URL format and headers
Relationships Ember Data includes several built-in relationship types to help you define how your models relate to each other.