limit method

  1. @override
JoinQueryBuilder limit(
  1. int limit
)

Sets a limit to the number of results returned by the query. The maximum limit is 20,000 and the default is 1,000 if none is provided.

Implementation

@override
JoinQueryBuilder limit(int limit) {
  _queryBuilder.limit(limit);
  return this;
}