Skip to content

Documentation / @ember-data/json-api / request / createRecord

Call Signature

ts
function createRecord<T>(record, options?): CreateRequestOptions<T>;

Defined in: -private/builders/save-record.ts:145

Builds request options to create new record for resources, configured for the url, method and header expectations of most JSON:API APIs.

Basic Usage

ts
import { createRecord } from '@ember-data/json-api/request';

const person = store.createRecord('person', { name: 'Ted' });
const data = await store.request(createRecord(person));

Supplying Options to Modify the Request Behavior

The following options are supported:

  • host - The host to use for the request, defaults to the host configured with setBuildURLConfig.
  • namespace - The namespace to use for the request, defaults to the namespace configured with setBuildURLConfig.
  • resourcePath - The resource path to use for the request, defaults to pluralizing the supplied type
  • reload - Whether to forcibly reload the request if it is already in the store, not supplying this option will delegate to the store's CachePolicy, defaulting to false if none is configured.
  • backgroundReload - Whether to reload the request if it is already in the store, but to also resolve the promise with the cached value, not supplying this option will delegate to the store's CachePolicy, defaulting to false if none is configured.
  • urlParamsSetting - an object containing options for how to serialize the query params (see buildQueryParams)
ts
import { createRecord } from '@ember-data/json-api/request';

const person = store.createRecord('person', { name: 'Ted' });
const options = createRecord(person, { namespace: 'api/v1' });
const data = await store.request(options);

Type Parameters

T

T

Parameters

record

T

options?

ConstrainedRequestOptions

Returns

CreateRequestOptions<T>

Call Signature

ts
function createRecord(record, options?): CreateRequestOptions;

Defined in: -private/builders/save-record.ts:146

Builds request options to create new record for resources, configured for the url, method and header expectations of most JSON:API APIs.

Basic Usage

ts
import { createRecord } from '@ember-data/json-api/request';

const person = store.createRecord('person', { name: 'Ted' });
const data = await store.request(createRecord(person));

Supplying Options to Modify the Request Behavior

The following options are supported:

  • host - The host to use for the request, defaults to the host configured with setBuildURLConfig.
  • namespace - The namespace to use for the request, defaults to the namespace configured with setBuildURLConfig.
  • resourcePath - The resource path to use for the request, defaults to pluralizing the supplied type
  • reload - Whether to forcibly reload the request if it is already in the store, not supplying this option will delegate to the store's CachePolicy, defaulting to false if none is configured.
  • backgroundReload - Whether to reload the request if it is already in the store, but to also resolve the promise with the cached value, not supplying this option will delegate to the store's CachePolicy, defaulting to false if none is configured.
  • urlParamsSetting - an object containing options for how to serialize the query params (see buildQueryParams)
ts
import { createRecord } from '@ember-data/json-api/request';

const person = store.createRecord('person', { name: 'Ted' });
const options = createRecord(person, { namespace: 'api/v1' });
const data = await store.request(options);

Parameters

record

unknown

options?

ConstrainedRequestOptions

Returns

CreateRequestOptions

Released under the MIT License.