import { Application } from '@feathersjs/express'; import service from 'feathers-mongoose'; import Model from '../models/product/product.model'; const Products = service({ Model, whitelist: ['$options', '$regex'] }); export default (app: Application): void => { app.use('/products', Products); };