whereIds method

QueryRequest<M> whereIds(
  1. Iterable<Object> ids
)

Adds IDs to the query.

Only entities with the given IDs are included in the query results.

If called multiple times, the IDs add up.

Implementation

QueryRequest<M> whereIds(Iterable<Object> ids) {
    _ids.addAll(ids);
    return this;
}