Skip to content
Advertisement

How to merge duplicate Firestore documents?

I want to create a function that loops through an array and creates a new document in the Firestore database with an id and quantity fields for each element in the array but I want the function to merge the documents if the another document with the same id already exists I tried the following code:

JavaScript

but it did not work then I tried to change the .add to .set but it shows the following error:

JavaScript

Advertisement

Answer

You cannot call set on a collection. You can only write to a document within that collection.

You will to first need to use a query to find the duplicate document, and then update that document.


If each item.id has to be unique within a user’s basket, consider using the item Id as the document ID, instead of calling add:

JavaScript

This makes it much easier to update the document later, as you can write to the document based on its document/item id again, rather than needing a query.

Advertisement