Home > database >  How to create a document if the document doesn't exist or else don't do anything?
How to create a document if the document doesn't exist or else don't do anything?

Time:04-07

I Wanted To Ask If It Is Possible To Make A New Document With A UID If It DOESN'T Exist But if it exists NOT To Do Anything (and if possible return an error) In Firestore. (In Modular Javascript)

And If It Is Possible How?
Note: I Already Read This Question:StackOverFlow 46888701 But It Doesn't Fit My Requirements because after creating the document I want to be able to update it too.
Edit: I Wanted To Know Without Using getDoc because when i use it acts like a read and i don't want to spend lots of my no of reads from my limit.

CodePudding user response:

In web version 9, the function that can help you create a document is named setDoc(), which creates or overwrites a document at a specific document reference.

How to create a document if the document doesn't exist or else don't do anything?

If you want to achieve that, you have to check if the document already exists. If it doesn't exist, create it using setDoc(), otherwise, take no action, but do not use the updateDoc() function in this case.

Remember that the updateDoc() function helps only when you want to update some fields of a document without overwriting the entire document. If the document doesn't exist, the update operation will fail.

Edit:

According to your edited question, please note that there is no way you can know if a document exists, without checking it explicitly. You can indeed not do that check, but you'll end up overwriting the document over and over again. Please also note, that a write operation is more expensive than a read operation. So that's the best option that you have.

CodePudding user response:

You should first try to get the document and check if it exists then proceed to your document set/update. See sample code below:

import { doc, getDoc } from "firebase/firestore";

const docRef = doc(db, "<collection>", "<UID>");
const docSnap = await getDoc(docRef);

if (docSnap.exists()) {
  console.log("Document exist!");
  // Throws an error.
  throw new Error('Document Exist!');
} else {
  await setDoc(docRef, {
    // Document Data
  });
}

For more relevant information, check out these documentations:


Edit:

If you don' t want to use getDoc then you have the option to use updateDoc, it will produce an error but you can still execute a setDoc method on the catch method. On this approach, you're doing a fail-safe practice that you're responding in the event of failure. See code below:

const docRef = doc(db, "<collection>", "<UID>");
const docSnap = await getDoc(docRef);
  // Produces error log if no document to update
  updateDoc(docRef, {
    // document data
  })
  .catch((error) => {
    // console.log(error);
    setDoc(docRef, {
      // document data
    });
  });

According to the documentation, an update is just a write operation:

Charges for writes and deletes are straightforward. For writes, each set or update operation counts a single write.

We have established that an update is just a write operation (there's no reading involved). A write is a change in a document, since you're not changing anything because the document didn't exist then you won't be charged at all.

  • Related