loadAggregation<T> abstract method
Future<T?>
loadAggregation<T>(
- ModelAdapterCollectionQuery query,
- ModelAggregateQuery<
AsyncAggregateValue> aggregateQuery
Aggregate queries against data collections to retrieve data.
Pass query
to the platform configured in the adapter to specify a collection and aggregateQuery
to specify an aggregate query.
Returns Null if the type does not match.
データコレクションに対しての集計クエリでデータを取得します。
アダプターで設定されたプラットフォームにquery
を渡してコレクションを指定し、aggregateQuery
で集計クエリを指定します。
型が一致しない場合はNullを返します。
Implementation
Future<T?> loadAggregation<T>(
ModelAdapterCollectionQuery query,
ModelAggregateQuery aggregateQuery,
);