readAll method

Future<HGrid> readAll(
  1. String filter, {
  2. int limit = 2147483647,
})
inherited

Calls "read" to query every entity record that matches given filter.

Clips number of results by "limit" parameter. Default is 2147483647 - max 32 bit int value.

Implementation

Future<HGrid> readAll(String filter, {int limit = 2147483647}) =>
    onReadAll(filter, limit);