I'm using the mongoid 6.1.0 aggregation framework in my Rails 5 project. I need to add a $match
pipeline if the value of a search field (text or select field) is not empty. Otherwise, it should be ignored and don't filter results. Something like:
@messages = Message.collection.aggregate([
{ '$match' => {'month': {'$gte' => @fr_mnth, '$lte' => @to_mnth}}},
{ '$group' => {'_id': '$mmsi'} },
{ '$lookup' => {'from': 'ships', 'localField': "_id", 'foreignField': "mmsi", as: "ship"}},
{ '$match' => {"ship.n2": params[:n2] if !params[:n2].blank? }}
]).allow_disk_use(true)
or to be more clear:
if not params[:n2].blank? { '$match' => {"ship.n2": params[:n2] }}
The problem is that if !params[:n2].blank?
cannot be included in the aggregation framework. Is there any other alternative solution?
I don't know ruby, but maybe I understand your problem.
Pseudo-code
UPDATE: As Aboozar Rajabi noted, if condition is true then we can just add
$match
stage to pipeline: