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:
text
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 (
...
);
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"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003eThe latest version of the \u003ccode\u003eAggregationQueryResults\u003c/code\u003e class in the Google Cloud Datastore v1 API is 4.15.0, with documentation and code samples available.\u003c/p\u003e\n"],["\u003cp\u003eThis class represents the result of an \u003ccode\u003eAggregationQuery\u003c/code\u003e, providing access to the outputs of aggregation functions via their assigned aliases.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eAggregationQueryResults\u003c/code\u003e offers properties like \u003ccode\u003eMetrics\u003c/code\u003e, for planning and execution details, \u003ccode\u003eMoreResults\u003c/code\u003e, indicating if additional results exist, and \u003ccode\u003eReadTime\u003c/code\u003e, specifying the snapshot read time.\u003c/p\u003e\n"],["\u003cp\u003eThe class \u003ccode\u003eAggregationQueryResults\u003c/code\u003e allows access to aggregation results through string aliases, using \u003ccode\u003ethis[string alias]\u003c/code\u003e which returns a \u003ccode\u003eValue\u003c/code\u003e object, and the parameter \u003ccode\u003ealias\u003c/code\u003e is the aggregation alias string used to get the result.\u003c/p\u003e\n"],["\u003cp\u003eThe class \u003ccode\u003eAggregationQueryResults\u003c/code\u003e is part of the namespace \u003ccode\u003eGoogle.Cloud.Datastore.V1\u003c/code\u003e, and it has versions available from 3.2.0 to 4.15.0.\u003c/p\u003e\n"]]],[],null,[]]