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
Similar to how the database adapters already allow paginate: false the adapters should allow the possibility to pass additional adapter options as params.adapter.
Specifically:
params.adapter.paginate - Same as params.paginate but recommended to use from now on
params.adapter.multi - To override the multi option e.g. for internal calls. This is especially useful for tests and seed files.
params.adapter.allow - To temporarily allow additional query $ operators
params.adapter.Model - To use a different model for a request if the adapter supports a model
The text was updated successfully, but these errors were encountered:
Similar to how the database adapters already allow
paginate: false
the adapters should allow the possibility to pass additional adapter options asparams.adapter
.Specifically:
params.adapter.paginate
- Same asparams.paginate
but recommended to use from now onparams.adapter.multi
- To override themulti
option e.g. for internal calls. This is especially useful for tests and seed files.params.adapter.allow
- To temporarily allow additional query$
operatorsparams.adapter.Model
- To use a different model for a request if the adapter supports a modelThe text was updated successfully, but these errors were encountered: