Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

172
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!