JVM - collection.query.pagingFrom()

Set a point to resume a query from, this is required when continuing a paginated query response.

import io.nitric.Nitric;
import io.nitric.resources.CollectionPermission;

class User {
  String name;
  int age;

  public User(String name, int age) {
    this.name = name;
    this.age = age;
  }

}

public class Application {
  public static void main(String[] args) {
    var profiles = Nitric.INSTANCE.collection("profiles", User.class).with(CollectionPermission.Read);

    var profileQuery = profiles.query().pagingFrom(pagingToken);

    Nitric.INSTANCE.run();
  }
}

Parameters

  • Name
    pagingToken
    Required
    Required
    Type
    Map<String, String>
    Description

    The paging token to apply to the query. Tokens are returned from query().fetch(), when results cannot be returned in a single page.

See also