SDK
SDK Dart v2.x
2

next #

Advances through the search results and returns the next page of items.

Arguments #

Copied to clipboard!
Future<List<dynamic>> next()

Returns #

Returns a RoleSearchResult object, or null if no more pages are available.

Pagination strategie #

The next method can work with the following strategie.

Strategy: from / size #

If the initial search contains from and size parameters, the next method retrieves the next page of result by incrementing the from offset.

Because this method does not freeze the search results between two calls, there can be missing or duplicated documents between two result pages.

It's the fastest pagination method available, but also the less consistent, and it is not possible to retrieve more than 10000 items using it.
Above that limit, any call to next throws an Exception.

Copied to clipboard!
for (var i = 1; i <= 5; i++) {
  await kuzzle.security.createRole(
    'read-only-${i}',
    {
      'auth': {
        'actions': {
          'getCurrentUser': true,
          'getMyCredentials': true,
          'getMyRights': true,
          'logout': true
        }
      }
    }
  );
}
var res = await kuzzle.security.searchRoles(
  query:{ 'controllers': [ 'auth' ] }, 
  from: 1, 
  size: 1);
final result = [];
while (res != null) {
  result.addAll(res.hits);
  res = await res.next();
}