The alias of the aggregation function that was provided in the aggregation query.
If not provided, Datastore will pick a default name following the format
property_<incremental_id++>. For example:
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2),
COUNT_UP_TO(3) AS count_up_to_3,
COUNT_UP_TO(4)
OVER (
...
);
becomes:
```text
AGGREGATE
COUNT_UP_TO(1) AS count_up_to_1,
COUNT_UP_TO(2) AS property_1,
COUNT_UP_TO(3) AS count_up_to_3,
COUNT_UP_TO(4) AS property_2
OVER (
...
);
The result of the aggregation function corresponding to the given alias.
MoreResults
public QueryResultBatch.Types.MoreResultsType MoreResults { get; }
The condition that caused the query to complete, indicating whether more
results are available beyond the query limit or end cursor, or whether
the data has been exhausted.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage provides reference documentation for the `AggregationQueryResults` class within the Google Cloud Datastore v1 API, covering versions from 3.2.0 to the latest 4.15.0."],["The `AggregationQueryResults` class represents the output of an `AggregationQuery`, showing the result of the query's aggregation."],["The class offers a property `this[string alias]` which allows access to the result of an aggregation function using its assigned alias."],["`MoreResults` property specifies if there are more results beyond the query's limit or end cursor, or if the data has been exhausted."],["The `ReadTime` property provides a timestamp indicating when the data snapshot was read."]]],[]]