You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for thecount()function in Query to retrieve the count of documents matching a query without fetching the entire data. This will return an AggregateQuery which can be executed using get(AggregateSource). This feature significantly reduces network usage and Firestore read costs, especially for large datasets.
The text was updated successfully, but these errors were encountered:
This is also the only functionality that's keeping my team from removing a direct KMP Cocoapods dependency on Firebase, which really slows down Kotlin builds. count() will be a welcome addition to the wrapping.
Add support for the
count()
function in Query to retrieve the count of documents matching a query without fetching the entire data. This will return an AggregateQuery which can be executed usingget(AggregateSource)
. This feature significantly reduces network usage and Firestore read costs, especially for large datasets.The text was updated successfully, but these errors were encountered: