startAt abstract method

Query<T> startAt(
  1. Iterable<Object?> values
)

Takes a list of values, creates and returns a new Query that starts at the provided fields relative to the order of the query.

The values must be in order of orderBy filters.

Calling this method will replace any existing cursor "start" query modifiers.

Implementation

Query<T> startAt(Iterable<Object?> values);