limit method
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;
}