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 using PageHelper.nextPage() (code here), the final page isn't handled correctly. Internally, the helper fails to mutate its state if the after cursor is undefined. This means nextPage() endlessly repeats querying and returning the final page rather than indicating that there are no more pages left.
The text was updated successfully, but these errors were encountered:
Possibly relevant detail. This behavior was happening when all the data fit into a single page. I wasn't able to test if data that spanned multiple pages works because of #680
When using
PageHelper.nextPage()
(code here), the final page isn't handled correctly. Internally, the helper fails to mutate its state if theafter
cursor isundefined
. This meansnextPage()
endlessly repeats querying and returning the final page rather than indicating that there are no more pages left.The text was updated successfully, but these errors were encountered: