Documentation / @ember-data/active-record / deleteRecord
Call Signature
ts
function deleteRecord<T>(record, options?): DeleteRequestOptions<T>;
Defined in: save-record.ts:75
Builds request options to delete record for resources, configured for the url, method and header expectations of ActiveRecord APIs.
Basic Usage
ts
import { deleteRecord } from '@ember-data/active-record/request';
const person = store.peekRecord('person', '1');
// mark record as deleted
store.deleteRecord(person);
// persist deletion
const data = await store.request(deleteRecord(person));
Supplying Options to Modify the Request Behavior
The following options are supported:
host
- The host to use for the request, defaults to thehost
configured withsetBuildURLConfig
.namespace
- The namespace to use for the request, defaults to thenamespace
configured withsetBuildURLConfig
.resourcePath
- The resource path to use for the request, defaults to pluralizing the supplied typereload
- 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 tofalse
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 tofalse
if none is configured.urlParamsSetting
- an object containing options for how to serialize the query params (seebuildQueryParams
)
ts
import { deleteRecord } from '@ember-data/active-record/request';
const person = store.peekRecord('person', '1');
// mark record as deleted
store.deleteRecord(person);
// persist deletion
const options = deleteRecord(person, { namespace: 'api/v1' });
const data = await store.request(options);
Type Parameters
T
T
Parameters
record
T
options?
Returns
Call Signature
ts
function deleteRecord(record, options?): DeleteRequestOptions;
Defined in: save-record.ts:76
Builds request options to delete record for resources, configured for the url, method and header expectations of ActiveRecord APIs.
Basic Usage
ts
import { deleteRecord } from '@ember-data/active-record/request';
const person = store.peekRecord('person', '1');
// mark record as deleted
store.deleteRecord(person);
// persist deletion
const data = await store.request(deleteRecord(person));
Supplying Options to Modify the Request Behavior
The following options are supported:
host
- The host to use for the request, defaults to thehost
configured withsetBuildURLConfig
.namespace
- The namespace to use for the request, defaults to thenamespace
configured withsetBuildURLConfig
.resourcePath
- The resource path to use for the request, defaults to pluralizing the supplied typereload
- 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 tofalse
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 tofalse
if none is configured.urlParamsSetting
- an object containing options for how to serialize the query params (seebuildQueryParams
)
ts
import { deleteRecord } from '@ember-data/active-record/request';
const person = store.peekRecord('person', '1');
// mark record as deleted
store.deleteRecord(person);
// persist deletion
const options = deleteRecord(person, { namespace: 'api/v1' });
const data = await store.request(options);
Parameters
record
unknown