Add $totalResults
parameter + update docs #79
Merged
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
Hi there!
I just a made a small PR to add a new
$totalResults
parameter to thejsonPaginate
method so it can be passed to theBuilder::paginate
method.This parameter has been added recently with this PR and its goal is to bypass the counting of total results (for performance mainly, see the PR for more info).
Actually I had to use this because I have a query using the
DISTINCT
keyword and the count I get fromBuilder::paginate
is incorrect. There are a ton of issues on this subject and I don't think it will be fixed anytime soon because of the complexity.Feel free to ask if anything should be changed or added :)