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

174
Vistas
Firestore GET all Boolean TRUE then append FALSE values

I need a request/ request flow that retrieves all the documents where the boolean is true and then gets all that is false.

Is there a firestore query I can make that does this? An orderBy?

Currently, I have an InfiniteScroll and I am struggling for the display to switch between getting true values to getting false values.

    if (res.data.length < ITEMS_PER_PAGE) {
        if (onlyListed) {
          // transition from true to false
          setLastVisible(null);
          setOnlyListed(false);
        } else {
          // already transitioned so no more true or false values
          sethasMore(false);
        }
     }

It seems the issue is currently it doesn't switch between getting true to false seemlessly on ReactJs side. So a firestore query that fetches all true then false would be perfect as then I can use a regular pagination flow that I know works.

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

0

If you want only the documents where the onlyListed field value is true, you can use a query:

ref.where('onlyListed', '==', true)

If you want all documents with the onlyListed field, no matter its value, but with them grouped by their value, you can use an ordered query:

ref.orderBy('onlyListed')

If this gives the wrong order, you can reverse it by:

ref.orderBy('onlyListed', 'desc')
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