DS.JSONAPIAdapter#findMany()

findMany (store, type, ids, snapshots) Promise Inherited from DS.RESTAdapter but overwritten in addon/adapters/json-api.js:112 Parameters: store DS.Store type DS.Model ids Array snapshots Array Returns: Promise promise

DS.JSONAPISerializer

DS.JSONAPISerializer Class Extends: DS.JSONSerializer Defined in: addon/serializers/json-api.js:14 Module: ember-data Ember Data 2.0 Serializer: In Ember Data a Serializer is used to serialize and deserialize records when they are transferred in and out of an external source. This process involves normalizing property names, transforming attribute values and serializing relationships. JSONAPISerializer supports the http://jsonapi.org/ spec and is the serializer recommended by Ember Data. T

DS.JSONAPIAdapter

DS.JSONAPIAdapter Class Extends: DS.RESTAdapter Defined in: addon/adapters/json-api.js:11 Module: ember-data

DS.ForbiddenError

DS.ForbiddenError Class Defined in: addon/adapters/errors.js:140 Module: ember-data

DS.JSONAPIAdapter#coalesceFindRequests

coalesceFindRequests{boolean} Inherited from DS.RESTAdapter but overwritten in addon/adapters/json-api.js:63 By default the JSONAPIAdapter will send each find request coming from a store.find or from accessing a relationship separately to the server. If your server supports passing ids as a query string, you can set coalesceFindRequests to true to coalesce all find requests within a single runloop. For example, if you have an initial payload of: { post: { id: 1, comments: [1, 2]

DS.JSONAPIAdapter#ajaxOptions()

ajaxOptions (url, type, options) Objectprivate Inherited from DS.RESTAdapter but overwritten in addon/adapters/json-api.js:21 Parameters: url String type String The request type GET, POST, PUT, DELETE etc. options Object Returns: Object

DS.InvalidError

DS.InvalidError Class Defined in: addon/adapters/errors.js:58 Module: ember-data A DS.InvalidError is used by an adapter to signal the external API was unable to process a request because the content was not semantically correct or meaningful per the API. Usually this means a record failed some form of server side validation. When a promise from an adapter is rejected with a DS.InvalidError the record will transition to the invalid state and the errors will be set to the errors property on

DS.FilteredRecordArray#updateFilter()

updateFilterprivate Defined in addon/-private/system/record-arrays/filtered-record-array.js:55

DS.Errors#_remove()

_removeprivate Defined in addon/-private/system/model/errors.js:329 Removes all error messages from the given attribute without sending event.

DS.Errors#_registerHandlers()

_registerHandlersprivate Defined in addon/-private/system/model/errors.js:111 Register with target handler