Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

176
Vistas
Check if Firestore document exists and return boolean

I want to make a utility function that returns true or false depending on whether a firestore document in a collection exists.

Below is what I originally wrote, but it returns a promise instead of a boolean.

async function docExists(docName, docId) {
  const docRef = db.collection(docName).doc(docId);

  await docRef.get().then((docSnapshot) => {
    if (docSnapshot.exists) {
      return true
    } else {
      return false
    }
  });
}

Is there a way for it to return a boolean, or is this just the wrong way to approach the problem?

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

There's no need to mix the await and .then syntax like you have in your question. This should be sufficient:

async function docExists(docName, docId) {
  const docRef = db.collection(docName).doc(docId);

  let docSnapshot = await docRef.get();
  
  if (docSnapshot.exists) {
    return true;
  } else {
    return false;
  }
}

Alternatively, through the use of promise chaining, you should be able to simply add the return keyword before the original await docRef.get().then(...) that you have in your question.

about 4 years ago · Juan Pablo Isaza Denunciar

0

A simple one liner for that could be:

const docExists = async (docName, docId) => (await db.collection(docName).doc(docId).get()).exists
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda