AggregateQuerySnapshot
class AggregateQuerySnapshot : NSObject, @unchecked SendableThe results of executing an AggregateQuery.
- 
                  
                  The query that was executed to produce this result. DeclarationSwift var query: FIRAggregateQuery { get }
- 
                  
                  The number of documents in the result set of the underlying query. DeclarationSwift var count: NSNumber { get }
- 
                  
                  Gets the aggregate result for the specified aggregate field without loss of precision. No coercion of data types or values is performed. See the AggregateFieldclass for the expected aggregate result values and types. Numeric aggregate results will be boxed in anNSNumber.Warning Throws anInvalidArgumentexception if the aggregate field was not requested in theAggregateQuery.See AggregateFieldDeclarationSwift func get(_ aggregateField: FIRAggregateField) -> AnyParametersaggregateFieldAn instance of AggregateFieldthat specifies which aggregate result to return.Return ValueReturns the aggregate result from the server without loss of precision.