You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When fetching more than 1000 entries of an eloquent object, I only receive the top 1000 entries. This seems to be caused by src/Drivers/EloquentEntitySet.php , because it checks less and equal which causes it to break the loop if it is exactly the chunk size length (which would be the exact size because of the chunksize). If i locally change it form <= to < it works correctly.
I'm only not entirely sure why this issue only occurred now and not a year ago when this was added, might be a me-issue if i forgot to update my packages regularly ;)
The text was updated successfully, but these errors were encountered:
Hi @ianket, I can't immediately see a reason for this, do you have config items lodata.pagination.max or lodata.pagination.default set ? If you recently upgraded these might be new...
When fetching more than 1000 entries of an eloquent object, I only receive the top 1000 entries. This seems to be caused by
src/Drivers/EloquentEntitySet.php , because it checks less and equal which causes it to break the loop if it is exactly the chunk size length (which would be the exact size because of the chunksize). If i locally change it form
<=
to<
it works correctly.I'm only not entirely sure why this issue only occurred now and not a year ago when this was added, might be a me-issue if i forgot to update my packages regularly ;)
The text was updated successfully, but these errors were encountered: