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
I was surprised to discover that the query function in the adapter was implemented without the ability to specify a limit param, meaning that query results will always return 25 results or less. Is there a reason that the adapter implements query with only the ability to set a selector and a sort param? I've currently got around this limitation by overriding query in my application adapter, but I'm puzzled as to why this feature was omitted in the first place.
Anybody care to elaborate?
The text was updated successfully, but these errors were encountered:
I think that you can actually specify a limit and skip to normal queries in the adapter. The documentation is just not explicitly stating it, instead referring to the pouchdb-find documentation (https://github.com/pouchdb/pouchdb/tree/master/packages/node_modules/pouchdb-find). Noticed that the link in the documentation is broken though.
The issue linked above refers to "internal" queries that ember-pouch performs when following hasMany links.
Hi folks,
I was surprised to discover that the
query
function in the adapter was implemented without the ability to specify alimit
param, meaning that query results will always return 25 results or less. Is there a reason that the adapter implementsquery
with only the ability to set a selector and a sort param? I've currently got around this limitation by overridingquery
in my application adapter, but I'm puzzled as to why this feature was omitted in the first place.Anybody care to elaborate?
The text was updated successfully, but these errors were encountered: