Home > Enterprise >  Largest possible length of array in firebase query
Largest possible length of array in firebase query

Time:01-05

'The sum of filters, sort orders, and parent document path (1 for a subcollection, 0 for a root collection) in a query cannot exceed 100.' from enter image description here

CodePudding user response:

This limit means that you can't have more than 100 where clauses orderBy clauses subcollections in a query. It is not related to the number of items in an array in a document.

  •  Tags:  
  • Related