Keyset pagination doesn't seem to use default_limit value
I have this action:
I expect that, if I call this action, it would add a
LIMIT 10
to the generated SQL query. but it actually adds a LIMIT 251
. Seems like the default_limit
value is being ignored for some reason.
If I run the query with page: [limit: 10]
then it works fine.3 Replies
Hey there @Blibs would you mind opening an issue on ash for this? Will address when I'm back from vacation.
GitHub
default_limit option in keyset pagination is ignored · Issue #668 ·...
Describe the bug The documentation says that we can define a default limit value for keyset pagination using the default_limit option. Seems like that value is being ignored since the query generat...
🙇♂️