File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Firestore/Source/Public/FirebaseFirestore Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -546,13 +546,11 @@ NS_SWIFT_NAME(Query)
546
546
#pragma mark - Aggregation
547
547
548
548
/* *
549
- * A query that counts the documents in the result set of this query.
549
+ * A query that counts the documents in the result set of this query, without actually downloading
550
+ * the documents.
550
551
*
551
- * The `AggregateQuery` query, when executed, counts the documents in the result set of this `Query`
552
- * without actually downloading the documents.
553
- *
554
- * Using the returned query to count the documents is efficient because only the final count, not
555
- * the documents' data, is downloaded. The returned query can even count the documents if the result
552
+ * Using this `AggregateQuery` to count the documents is efficient because only the final count,
553
+ * not the documents' data, is downloaded. The query can even count the documents if the result
556
554
* set would be prohibitively large to download entirely (e.g. thousands of documents).
557
555
*/
558
556
@property(nonatomic, readonly) FIRAggregateQuery *count;
You can’t perform that action at this time.
0 commit comments