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
If I run the query with
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.