Documentation / @ember-data/json-api / request / updateRecord
Function: updateRecord()
Call Signature
function updateRecord<T, RT>(record, options?): UpdateRequestOptions<ReactiveDataDocument<RT>, T>;
Defined in: warp-drive-packages/utilities/declarations/-private/json-api/save-record.d.ts:173
⚠️ These Mutation Builders DO NOT Set The Necessary Request Body
While this may come as a surprise, the app providing the body ensures that only desired and correctly formatted data is sent with the request.
Builds request options to update existing record for resources, configured for the url, method and header expectations of most JSON:API APIs.
Example Usage
import { cacheKeyFor } from '@warp-drive/core';
import { updateRecord } from '@warp-drive/utilities/json-api';
import type { EditablePerson } from '#/data/types';
const mutable = await checkout<EditablePerson>(person);
mutable.name = 'Chris';
const init = updateRecord(mutable);
init.body = JSON.stringify(
// it's likely you will want to transform this data
// somewhat, or serialize only specific properties instead
serializePatch(store.cache, cacheKeyFor(mutable))
);
const data = await store.request(init);
Supplying Options to Modify the Request Behavior
The following options are supported:
patch
- Allows caller to specify whether to use a PATCH request instead of a PUT request, defaults tofalse
.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
)
import { updateRecord } from '@warp-drive/utilities/json-api';
const person = store.peekRecord('person', '1');
person.name = 'Chris';
const options = updateRecord(person, { patch: true });
const data = await store.request(options);
Type Parameters
T
T
extends TypedRecordInstance
RT
RT
extends TypedRecordInstance
= T
Parameters
record
T
options?
ConstrainedRequestOptions
& object
Returns
UpdateRequestOptions
<ReactiveDataDocument
<RT
>, T
>
Call Signature
function updateRecord(record, options?): UpdateRequestOptions;
Defined in: warp-drive-packages/utilities/declarations/-private/json-api/save-record.d.ts:179
⚠️ These Mutation Builders DO NOT Set The Necessary Request Body
While this may come as a surprise, the app providing the body ensures that only desired and correctly formatted data is sent with the request.
Builds request options to update existing record for resources, configured for the url, method and header expectations of most JSON:API APIs.
Example Usage
import { cacheKeyFor } from '@warp-drive/core';
import { updateRecord } from '@warp-drive/utilities/json-api';
import type { EditablePerson } from '#/data/types';
const mutable = await checkout<EditablePerson>(person);
mutable.name = 'Chris';
const init = updateRecord(mutable);
init.body = JSON.stringify(
// it's likely you will want to transform this data
// somewhat, or serialize only specific properties instead
serializePatch(store.cache, cacheKeyFor(mutable))
);
const data = await store.request(init);
Supplying Options to Modify the Request Behavior
The following options are supported:
patch
- Allows caller to specify whether to use a PATCH request instead of a PUT request, defaults tofalse
.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
)
import { updateRecord } from '@warp-drive/utilities/json-api';
const person = store.peekRecord('person', '1');
person.name = 'Chris';
const options = updateRecord(person, { patch: true });
const data = await store.request(options);
Parameters
record
unknown
options?
ConstrainedRequestOptions
& object