home
  • Blog
  • Home
  • Projects
    • Ember
    • EmberData
    • Ember CLI
3.28
  • Packages
    • @ember-data/adapter
    • @ember-data/adapter/error
    • @ember-data/adapter/json-api
    • @ember-data/adapter/rest
    • @ember-data/canary-features
    • @ember-data/debug
    • @ember-data/deprecations
    • @ember-data/model
    • @ember-data/record-data
    • @ember-data/serializer
    • @ember-data/serializer/json
    • @ember-data/serializer/json-api
    • @ember-data/serializer/rest
    • @ember-data/store
  • Classes
    • AbortError
    • Adapter
    • AdapterError
    • AdapterPopulatedRecordArray
    • BelongsToReference
    • BooleanTransform
    • BuildURLMixin
    • ConflictError
    • DateTransform
    • EmbeddedRecordsMixin
    • Errors
    • ForbiddenError
    • HasManyReference
    • IdentifierCache
    • InvalidError
    • JSONAPIAdapter
    • JSONAPISerializer
    • JSONSerializer
    • ManyArray
    • MinimumAdapterInterface
    • MinimumSerializerInterface
    • Model
    • NotFoundError
    • NumberTransform
    • PromiseArray
    • PromiseManyArray
    • PromiseObject
    • RESTAdapter
    • RESTSerializer
    • RecordArray
    • RecordDataDefault
    • RecordDataStoreWrapper
    • RecordReference
    • Reference
    • Serializer
    • ServerError
    • Snapshot
    • SnapshotRecordArray
    • StableRecordIdentifier
    • Store
    • StringTransform
    • TimeoutError
    • Transform
    • UnauthorizedError

Class JSONAPIAdapter public


Extends: RESTAdapter
Defined in: ../adapter/addon/json-api.ts:18
Module: @ember-data/adapter/json-api
Since: v1.13.0

The JSONAPIAdapter is the default adapter used by Ember Data. It is responsible for transforming the store's requests into HTTP requests that follow the JSON API format.

JSON API Conventions

The JSONAPIAdapter uses JSON API conventions for building the URL for a record and selecting the HTTP verb to use with a request. The actions you can take on a record map onto the following URLs in the JSON API adapter:

Action HTTP Verb URL
`store.findRecord('post', 123)` GET /posts/123
`store.findAll('post')` GET /posts
Update `postRecord.save()` PATCH /posts/123
Create `store.createRecord('post').save()` POST /posts
Delete `postRecord.destroyRecord()` DELETE /posts/123

Success and failure

The JSONAPIAdapter will consider a success any response with a status code of the 2xx family ("Success"), as well as 304 ("Not Modified"). Any other status code will be considered a failure.

On success, the request promise will be resolved with the full response payload.

Failed responses with status code 422 ("Unprocessable Entity") will be considered "invalid". The response will be discarded, except for the errors key. The request promise will be rejected with a InvalidError. This error object will encapsulate the saved errors value.

Any other status codes will be treated as an adapter error. The request promise will be rejected, similarly to the invalid case, but with an instance of AdapterError instead.

Endpoint path customization

Endpoint paths can be prefixed with a namespace by setting the namespace property on the adapter:

app/adapters/application.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  namespace = 'api/1';
}

Requests for the person model would now target /api/1/people/1.

Host customization

An adapter can target other hosts by setting the host property.

app/adapters/application.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  host = 'https://api.example.com';
}

Requests for the person model would now target https://api.example.com/people/1.


Methods

buildQuery (snapshot) : Object public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:1304

Available since v2.5.0

snapshot
Snapshot
returns
Object

Used by findAll and findRecord to build the query's data hash supplied to the ajax method.

buildURL (modelName, id, snapshot, requestType, query) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:42

modelName
String
id
(String|Array|Object)

single id or array of ids or query

snapshot
(Snapshot|SnapshotRecordArray)

single snapshot or array of snapshots

requestType
String
query
Object

object of query parameters to send for query requests.

returns
String

url

Builds a URL for a given type and optional ID.

By default, it pluralizes the type's name (for example, 'post' becomes 'posts' and 'person' becomes 'people'). To override the pluralization see pathForType.

If an ID is specified, it adds the ID to the path generated for the type, separated by a /.

When called by RESTAdapter.findMany() the id and snapshot parameters will be arrays of ids and snapshots.

createRecord (store, type, snapshot) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:802

store
Store
type
Model
snapshot
Snapshot
returns
Promise

promise

Called by the store when a newly created record is saved via the save method on a model record instance.

The createRecord method serializes the record and makes an Ajax (HTTP POST) request to a URL computed by buildURL.

See serialize for information on how to customize the serialized form of a record.

deleteRecord (store, type, snapshot) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:853

store
Store
type
Model
snapshot
Snapshot
returns
Promise

promise

Called by the store when a record is deleted.

The deleteRecord method makes an Ajax (HTTP DELETE) request to a URL computed by buildURL.

findAll (store, type, neverSet, snapshotRecordArray) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:581

store
Store
type
Model
neverSet
Undefined

a value is never provided to this argument

snapshotRecordArray
SnapshotRecordArray
returns
Promise

promise

Called by the store in order to fetch a JSON array for all of the records for a given type.

The findAll method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload.

findBelongsTo (store, snapshot, url, relationship) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:757

store
Store
snapshot
Snapshot
url
String
relationship
Object

meta object describing the relationship

returns
Promise

promise

Called by the store in order to fetch the JSON for the unloaded record in a belongs-to relationship that was originally specified as a URL (inside of links).

For example, if your original payload looks like this:

{
  "person": {
    "id": 1,
    "name": "Tom Dale",
    "links": { "group": "/people/1/group" }
  }
}

This method will be called with the parent record and /people/1/group.

The findBelongsTo method will make an Ajax (HTTP GET) request to the originally specified URL.

The format of your links value will influence the final request URL via the urlPrefix method:

  • Links beginning with //, http://, https://, will be used as is, with no further manipulation.

  • Links beginning with a single / will have the current adapter's host value prepended to it.

  • Links with no beginning / will have a parentURL prepended to it, via the current adapter's buildURL.

findHasMany (store, snapshot, url, relationship) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:711

store
Store
snapshot
Snapshot
url
String
relationship
Object

meta object describing the relationship

returns
Promise

promise

Called by the store in order to fetch a JSON array for the unloaded records in a has-many relationship that were originally specified as a URL (inside of links).

For example, if your original payload looks like this:

{
  "post": {
    "id": 1,
    "title": "Rails is omakase",
    "links": { "comments": "/posts/1/comments" }
  }
}

This method will be called with the parent record and /posts/1/comments.

The findHasMany method will make an Ajax (HTTP GET) request to the originally specified URL.

The format of your links value will influence the final request URL via the urlPrefix method:

  • Links beginning with //, http://, https://, will be used as is, with no further manipulation.

  • Links beginning with a single / will have the current adapter's host value prepended to it.

  • Links with no beginning / will have a parentURL prepended to it, via the current adapter's buildURL.

findMany (store, type, ids, snapshots) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:672

store
Store
type
Model
ids
Array
snapshots
Array
returns
Promise

promise

Called by the store in order to fetch several records together if coalesceFindRequests is true

For example, if the original payload looks like:

{
  "id": 1,
  "title": "Rails is omakase",
  "comments": [ 1, 2, 3 ]
}

The IDs will be passed as a URL-encoded Array of IDs, in this form:

ids[]=1&ids[]=2&ids[]=3

Many servers, such as Rails and PHP, will automatically convert this URL-encoded array into an Array for you on the server-side. If you want to encode the IDs, differently, just override this (one-line) method.

The findMany method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload.

findRecord (store, type, id, snapshot) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:556

Available since v1.13.0

store
Store
type
Model
id
String
snapshot
Snapshot
returns
Promise

promise

Called by the store in order to fetch the JSON for a given type and ID.

The findRecord method makes an Ajax request to a URL computed by buildURL, and returns a promise for the resulting payload.

This method performs an HTTP GET request with the id provided as part of the query string.

generateIdForRecord (store, type, inputProperties) : (String|Number) public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:400

store
Store
type
Model

the Model class of the record

inputProperties
Object

a hash of properties to set on the newly created record.

returns
(String|Number)

id

If the globally unique IDs for your records should be generated on the client, implement the generateIdForRecord() method. This method will be invoked each time you create a new record, and the value returned from it will be assigned to the record's primaryKey.

Most traditional REST-like HTTP APIs will not use this method. Instead, the ID of the record will be set by the server, and your adapter will update the store with the new ID when it calls didCreateRecord(). Only implement this method if you intend to generate record IDs on the client-side.

The generateIdForRecord() method will be invoked with the requesting store as the first parameter and the newly created record as the second parameter:

import Adapter from '@ember-data/adapter';
import { v4 } from 'uuid';

export default class ApplicationAdapter extends Adapter {
  generateIdForRecord(store, type, inputProperties) {
    return v4();
  }
}

groupRecordsForFindMany (store, snapshots) : Array public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:895

store
Store
snapshots
Array
returns
Array

an array of arrays of records, each of which is to be loaded separately by findMany.

Organize records into groups, each of which is to be passed to separate calls to findMany.

This implementation groups together records that have the same base URL but differing ids. For example /comments/1 and /comments/2 will be grouped together because we know findMany can coalesce them together as /comments?ids[]=1&ids[]=2

It also supports urls where ids are passed as a query param, such as /comments?id=1 but not those where there is more than 1 query param such as /comments?id=2&name=David Currently only the query param of id is supported. If you need to support others, please override this or the _stripIDFromURL method.

It does not group records that have differing base urls, such as for example: /posts/1/comments/2 and /posts/2/comments/3

handleResponse (status, headers, payload, requestData) : Object | AdapterError public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:964

Available since v1.13.0

status
Number
headers
Object
payload
Object
requestData
Object
  • the original request information
returns
Object | AdapterError

response

Takes an ajax response, and returns the json payload or an error.

By default this hook just returns the json payload passed to it. You might want to override it in two cases:

  1. Your API might return useful results in the response headers. Response headers are passed in as the second argument.

  2. Your API might return errors as successful responses with status code 200 and an Errors text or object. You can return a InvalidError or a AdapterError (or a sub class) from this hook and it will automatically reject the promise and put your record into the invalid or error state.

Returning a InvalidError from this method will cause the record to transition into the invalid state and make the errors object available on the record. When returning an InvalidError the store will attempt to normalize the error data returned from the server using the serializer's extractErrors method.

isInvalid (status, headers, payload) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:1043

Available since v1.13.0

status
Number
headers
Object
payload
Object
returns
Boolean

Default handleResponse implementation uses this hook to decide if the response is an invalid error.

isSuccess (status, headers, payload) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:1027

Available since v1.13.0

status
Number
headers
Object
payload
Object
returns
Boolean

Default handleResponse implementation uses this hook to decide if the response is a success.

pathForType (modelName) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:447

modelName
String
returns
String

path

Determines the pathname for a given type.

By default, it pluralizes the type's name (for example, 'post' becomes 'posts' and 'person' becomes 'people').

Pathname customization

For example, if you have an object LineItem with an endpoint of /line_items/.

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';
import { decamelize } from '@ember/string';
import { pluralize } from 'ember-inflector';

export default class ApplicationAdapter extends RESTAdapter {
  pathForType(modelName) {
    var decamelized = decamelize(modelName);
    return pluralize(decamelized);
  }
}

query (store, type, query, recordArray, adapterOptions) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:607

store
Store
type
Model
query
Object
recordArray
AdapterPopulatedRecordArray
adapterOptions
Object
returns
Promise

promise

Called by the store in order to fetch a JSON array for the records that match a particular query.

The query method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload.

The query argument is a simple JavaScript object that will be passed directly to the server as parameters.

queryRecord (store, type, query, adapterOptions) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:637

Available since v1.13.0

store
Store
type
Model
query
Object
adapterOptions
Object
returns
Promise

promise

Called by the store in order to fetch a JSON object for the record that matches a particular query.

The queryRecord method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload.

The query argument is a simple JavaScript object that will be passed directly to the server as parameters.

serialize (snapshot, options) : Object public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:434

snapshot
Snapshot
options
Object
returns
Object

serialized snapshot

Proxies to the serializer's serialize method.

Example

app/adapters/application.js
import Adapter from '@ember-data/adapter';

export default class ApplicationAdapter extends Adapter {
  createRecord(store, type, snapshot) {
    let data = this.serialize(snapshot, { includeId: true });
    let url = `/${type.modelName}`;

    // ...
  }
}

shouldBackgroundReloadAll (store, snapshotRecordArray) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:847

Available since v1.13.0

store
Store
snapshotRecordArray
SnapshotRecordArray
returns
Boolean

This method is used by the store to determine if the store should reload a record array after the store.findAll method resolves with a cached record array.

This method is only checked by the store when the store is returning a cached record array.

If this method returns true the store will re-fetch all records from the adapter.

For example, if you do not want to fetch complex data over a mobile connection, or if the network is down, you can implement shouldBackgroundReloadAll as follows:

shouldBackgroundReloadAll(store, snapshotArray) {
  let { downlink, effectiveType } = navigator.connection;

  return downlink > 0 && effectiveType === '4g';
}

By default this method returns true, indicating that a background reload should always be triggered.

shouldBackgroundReloadRecord (store, snapshot) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:810

Available since v1.13.0

store
Store
snapshot
Snapshot
returns
Boolean

This method is used by the store to determine if the store should reload a record after the store.findRecord method resolves a cached record.

This method is only checked by the store when the store is returning a cached record.

If this method returns true the store will re-fetch a record from the adapter.

For example, if you do not want to fetch complex data over a mobile connection, or if the network is down, you can implement shouldBackgroundReloadRecord as follows:

shouldBackgroundReloadRecord(store, snapshot) {
  let { downlink, effectiveType } = navigator.connection;

  return downlink > 0 && effectiveType === '4g';
}

By default, this hook returns true so the data for the record is updated in the background.

shouldReloadAll (store, snapshotRecordArray) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:754

Available since v1.13.0

store
Store
snapshotRecordArray
SnapshotRecordArray
returns
Boolean

This method is used by the store to determine if the store should reload all records from the adapter when records are requested by store.findAll.

If this method returns true, the store will re-fetch all records from the adapter. If this method returns false, the store will resolve immediately using the cached records.

For example, if you are building an events ticketing system, in which users can only reserve tickets for 20 minutes at a time, and want to ensure that in each route you have data that is no more than 20 minutes old you could write:

shouldReloadAll(store, snapshotArray) {
  let snapshots = snapshotArray.snapshots();

  return snapshots.any((ticketSnapshot) => {
    let lastAccessedAt = ticketSnapshot.attr('lastAccessedAt');
    let timeDiff = moment().diff(lastAccessedAt, 'minutes');

    if (timeDiff > 20) {
      return true;
    } else {
      return false;
    }
  });
}

This method would ensure that whenever you do store.findAll('ticket') you will always get a list of tickets that are no more than 20 minutes old. In case a cached version is more than 20 minutes old, findAll will not resolve until you fetched the latest versions.

By default, this method returns true if the passed snapshotRecordArray is empty (meaning that there are no records locally available yet), otherwise, it returns false.

Note that, with default settings, shouldBackgroundReloadAll will always re-fetch all the records in the background even if shouldReloadAll returns false. You can override shouldBackgroundReloadAll if this does not suit your use case.

shouldReloadRecord (store, snapshot) : Boolean public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:703

Available since v1.13.0

store
Store
snapshot
Snapshot
returns
Boolean

This method is used by the store to determine if the store should reload a record from the adapter when a record is requested by store.findRecord.

If this method returns true, the store will re-fetch a record from the adapter. If this method returns false, the store will resolve immediately using the cached record.

For example, if you are building an events ticketing system, in which users can only reserve tickets for 20 minutes at a time, and want to ensure that in each route you have data that is no more than 20 minutes old you could write:

shouldReloadRecord(store, ticketSnapshot) {
  let lastAccessedAt = ticketSnapshot.attr('lastAccessedAt');
  let timeDiff = moment().diff(lastAccessedAt, 'minutes');

  if (timeDiff > 20) {
    return true;
  } else {
    return false;
  }
}

This method would ensure that whenever you do store.findRecord('ticket', id) you will always get a ticket that is no more than 20 minutes old. In case the cached version is more than 20 minutes old, findRecord will not resolve until you fetched the latest version.

By default this hook returns false, as most UIs should not block user interactions while waiting on data update.

Note that, with default settings, shouldBackgroundReloadRecord will always re-fetch the records in the background even if shouldReloadRecord returns false. You can override shouldBackgroundReloadRecord if this does not suit your use case.

sortQueryParams (obj) : Object public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:374

obj
Object
returns
Object

By default, the RESTAdapter will send the query params sorted alphabetically to the server.

For example:

store.query('posts', { sort: 'price', category: 'pets' });

will generate a requests like this /posts?category=pets&sort=price, even if the parameters were specified in a different order.

That way the generated URL will be deterministic and that simplifies caching mechanisms in the backend.

Setting sortQueryParams to a falsey value will respect the original order.

In case you want to sort the query parameters with a different criteria, set sortQueryParams to your custom sort function.

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  sortQueryParams(params) {
    let sortedKeys = Object.keys(params).sort().reverse();
    let len = sortedKeys.length, newParams = {};

    for (let i = 0; i < len; i++) {
      newParams[sortedKeys[i]] = params[sortedKeys[i]];
    }

    return newParams;
  }
}

updateRecord (store, type, snapshot) : Promise public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:827

store
Store
type
Model
snapshot
Snapshot
returns
Promise

promise

Called by the store when an existing record is saved via the save method on a model record instance.

The updateRecord method serializes the record and makes an Ajax (HTTP PUT) request to a URL computed by buildURL.

See serialize for information on how to customize the serialized form of a record.

urlForCreateRecord (modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:328

modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for a record.save() call when the record was created locally using store.createRecord().

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  urlForCreateRecord(modelName, snapshot) {
    return super.urlForCreateRecord(...arguments) + '/new';
  }
}

urlForDeleteRecord (id, modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:380

id
String
modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for a record.save() call when the record has been deleted locally.

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  urlForDeleteRecord(id, modelName, snapshot) {
    return super.urlForDeleteRecord(...arguments) + '/destroy';
  }
}

urlForFindAll (modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:160

modelName
String
snapshot
SnapshotRecordArray
returns
String

url

Builds a URL for a store.findAll(type) call.

Example:

app/adapters/comment.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  urlForFindAll(modelName, snapshot) {
    let baseUrl = this.buildURL(modelName);
    return `${baseUrl}/data/comments.json`;
  }
}

urlForFindBelongsTo (id, modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:300

id
String
modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for fetching an async belongsTo relationship when a url is not provided by the server.

Example:

app/adapters/application.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  urlForFindBelongsTo(id, modelName, snapshot) {
    let baseUrl = this.buildURL(modelName, id);
    return `${baseUrl}/relationships`;
  }
}

urlForFindHasMany (id, modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:272

id
String
modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for fetching an async hasMany relationship when a URL is not provided by the server.

Example:

app/adapters/application.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  urlForFindHasMany(id, modelName, snapshot) {
    let baseUrl = this.buildURL(modelName, id);
    return `${baseUrl}/relationships`;
  }
}

urlForFindMany (ids, modelName, snapshots) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:243

ids
Array
modelName
String
snapshots
Array
returns
String

url

Builds a URL for coalescing multiple store.findRecord(type, id) records into 1 request when the adapter's coalesceFindRequests property is true.

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  urlForFindMany(ids, modelName) {
    let baseUrl = this.buildURL();
    return `${baseUrl}/coalesce`;
  }
}

urlForFindRecord (id, modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:132

id
String
modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for a store.findRecord(type, id) call.

Example:

app/adapters/user.js
import JSONAPIAdapter from '@ember-data/adapter/json-api';

export default class ApplicationAdapter extends JSONAPIAdapter {
  urlForFindRecord(id, modelName, snapshot) {
    let baseUrl = this.buildURL(modelName, id, snapshot);
    return `${baseUrl}/users/${snapshot.adapterOptions.user_id}/playlists/${id}`;
  }
}

urlForQuery (query, modelName) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:186

query
Object
modelName
String
returns
String

url

Builds a URL for a store.query(type, query) call.

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  host = 'https://api.github.com';
  urlForQuery (query, modelName) {
    switch(modelName) {
      case 'repo':
        return `https://api.github.com/orgs/${query.orgId}/repos`;
      default:
        return super.urlForQuery(...arguments);
    }
  }
}

urlForQueryRecord (query, modelName) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:217

query
Object
modelName
String
returns
String

url

Builds a URL for a store.queryRecord(type, query) call.

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  urlForQueryRecord({ slug }, modelName) {
    let baseUrl = this.buildURL();
    return `${baseUrl}/${encodeURIComponent(slug)}`;
  }
}

urlForUpdateRecord (id, modelName, snapshot) : String public

Module: @ember-data/adapter/json-api

Inherited from BuildURLMixin ../adapter/addon/-private/build-url-mixin.ts:354

id
String
modelName
String
snapshot
Snapshot
returns
String

url

Builds a URL for a record.save() call when the record has been updated locally.

Example:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  urlForUpdateRecord(id, modelName, snapshot) {
    return `/${id}/feed?access_token=${snapshot.adapterOptions.token}`;
  }
}

Properties

coalesceFindRequests public

Module: @ember-data/adapter/json-api

Defined in ../adapter/addon/json-api.ts:180

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:

{
  data: {
    id: 1,
    type: 'post',
    relationship: {
      comments: {
        data: [
          { id: 1, type: 'comment' },
          { id: 2, type: 'comment' }
        ]
      }
    }
  }
}

By default calling post.get('comments') will trigger the following requests(assuming the comments haven't been loaded before):

GET /comments/1
GET /comments/2

If you set coalesceFindRequests to true it will instead trigger the following request:

GET /comments?filter[id]=1,2

Setting coalesceFindRequests to true also works for store.find requests and belongsTo relationships accessed within the same runloop. If you set coalesceFindRequests: true

store.findRecord('comment', 1);
store.findRecord('comment', 2);

will also send a request to: GET /comments?filter[id]=1,2

Note: Requests coalescing rely on URL building strategy. So if you override buildURL in your app groupRecordsForFindMany more likely should be overridden as well in order for coalescing to work.

coalesceFindRequests public

Module: @ember-data/adapter/json-api

Inherited from Adapter ../adapter/addon/index.ts:622

By default the store will try to coalesce all fetchRecord calls within the same runloop into as few requests as possible by calling groupRecordsForFindMany and passing it into a findMany call. You can opt out of this behaviour by either not implementing the findMany hook or by setting coalesceFindRequests to false.

headers public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:529

Some APIs require HTTP headers, e.g. to provide an API key. Arbitrary headers can be set as key/value pairs on the RESTAdapter's headers object and Ember Data will send them along with each ajax request. For dynamic headers see headers customization.

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';
import { computed } from '@ember/object';

export default class ApplicationAdapter extends RESTAdapter {
  headers: computed(function() {
    return {
      'API_KEY': 'secret key',
      'ANOTHER_HEADER': 'Some header value'
    };
  })
}

host public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:511

An adapter can target other hosts by setting the host property.

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  host = 'https://api.example.com';
}

Requests for the Post model would now target https://api.example.com/post/.

namespace public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:492

Endpoint paths can be prefixed with a namespace by setting the namespace property on the adapter:

app/adapters/application.js
import RESTAdapter from '@ember-data/adapter/rest';

export default class ApplicationAdapter extends RESTAdapter {
  namespace = 'api/1';
}

Requests for the Post model would now target /api/1/post/.

useFetch public

Module: @ember-data/adapter/json-api

Inherited from RESTAdapter ../adapter/addon/rest.ts:342

If jQuery or nAjax are installed, this property allows fetch to still be used instead when true.

On this page


Methods

  • buildQuery
  • buildURL
  • createRecord
  • deleteRecord
  • findAll
  • findBelongsTo
  • findHasMany
  • findMany
  • findRecord
  • generateIdForRecord
  • groupRecordsForFindMany
  • handleResponse
  • isInvalid
  • isSuccess
  • pathForType
  • query
  • queryRecord
  • serialize
  • shouldBackgroundReloadAll
  • shouldBackgroundReloadRecord
  • shouldReloadAll
  • shouldReloadRecord
  • sortQueryParams
  • updateRecord
  • urlForCreateRecord
  • urlForDeleteRecord
  • urlForFindAll
  • urlForFindBelongsTo
  • urlForFindHasMany
  • urlForFindMany
  • urlForFindRecord
  • urlForQuery
  • urlForQueryRecord
  • urlForUpdateRecord

Properties

  • coalesceFindRequests
  • coalesceFindRequests
  • headers
  • host
  • namespace
  • useFetch
Team Sponsors Security Legal Branding Community Guidelines
Twitter GitHub Discord Mastodon

If you want help you can contact us by email, open an issue, or get realtime help by joining the Ember Discord.

© Copyright 2025 - Tilde Inc.
Ember.js is free, open source and always will be.


Ember is generously supported by
blue Created with Sketch.