db.products.createIndex({'name': 'text', 'description': 'text'});
db.products.find({$text : {$search : 'Мебель'}})
db.products.aggregate([
{ $match: {
$or: [
{ 'name': { '$regex': req.query, '$options': 'i' } },
{ 'description': { '$regex': req.query, '$options': 'i' } }
]
} }])