The Firebase JS SDK is now in BETA!
This EAP site is no longer maintained. See the official Firebase Documentation site for the latest documentation and information about the Firebase JS SDK.

Home > @firebase/firestore > / > updateDoc

updateDoc() function

Updates fields in the document referred to by the specified DocumentReference. The update will fail if applied to a document that does not exist.

Signature:

export declare function updateDoc(reference: DocumentReference<unknown>, data: UpdateData): Promise<void>;

Parameters

Parameter Type Description
reference DocumentReference<unknown> A reference to the document to update.
data UpdateData An object containing the fields and values with which to update the document. Fields can contain dots to reference nested fields within the document.

Returns:

Promise<void>

A Promise resolved once the data has been successfully written to the backend (note that it won't resolve while you're offline).