get more than 10 documents from firestore in one round trip using Flutter

No, 10 is a hard limit and can’t be exceeded. You will need to perform multiple queries to get more than 10 documents by ID. The documentation states:

Use the in operator to combine up to 10 equality (==) clauses on the same field with a logical OR.

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top