How to use the forest-express.BaseFiltersParser.perform function in forest-express

To help you get started, we’ve selected a few forest-express examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ForestAdmin / forest-express-mongoose / src / services / filters-parser.js View on Github external
  this.replaceAllReferences = async (filtersString) => BaseFiltersParser
    .perform(filtersString, this.formatAggregationForReferences, this.formatConditionForReferences);
}
github ForestAdmin / forest-express-mongoose / src / services / filters-parser.js View on Github external
  this.perform = async (filtersString) => BaseFiltersParser
    .perform(filtersString, this.formatAggregation, this.formatCondition);
github ForestAdmin / forest-express-sequelize / src / services / filters-parser.js View on Github external
this.perform = async (filtersString) =>
    BaseFiltersParser.perform(filtersString, this.formatAggregation, this.formatCondition);