fields method

QueryRequest<M> fields(
  1. List<String> fieldPaths
)

Specifies the fields to include in the query result.

By default, all the fields are included.

Implementation

QueryRequest<M> fields(List<String> fieldPaths) {
    _fields.addAll(fieldPaths);
    return this;
}