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
Is it possible to add the possibility to pass a list of filters to the findAll method, so we can programmatically add multiple filters to the request ?
It's possible just by changing the method signature and check the type of the parameter (if iterable), if not, fallback on iterate over the argument object.
/** * @param {Array} params A list of params objects */TermBase.prototype.findAll=functionfindAll(fields){var_arguments=fieldsinstanceofArray ? fields : arguments;// ...};
The text was updated successfully, but these errors were encountered:
Server version: 2.0.0
Client version: 2.0.0
Is it possible to add the possibility to pass a list of filters to the findAll method, so we can programmatically add multiple filters to the request ?
It's possible just by changing the method signature and check the type of the parameter (if iterable), if not, fallback on iterate over the argument object.
The text was updated successfully, but these errors were encountered: