Class Count
Count of documents that match the query. The COUNT(*)
aggregation function operates on the entire document so
it does not require a field reference.
Implements
Inherited Members
Namespace: Google.Apis.Firestore.v1beta1.Data
Assembly: Google.Apis.Firestore.v1beta1.dll
Syntax
public class Count : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
UpTo
Optional. Optional constraint on the maximum number of documents to count. This provides a way to set an upper bound on the number of documents to scan, limiting latency, and cost. Unspecified is interpreted as no bound. High-Level Example:
AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
Requires: * Must be greater than zero when present.
Declaration
[JsonProperty("upTo")]
public virtual long? UpTo { get; set; }
Property Value
Type | Description |
---|---|
long? |