MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Combina due query OR con AND in Mongoose

Probabilmente è più semplice creare il tuo oggetto query direttamente come:

  Test.find({
      $and: [
          { $or: [{a: 1}, {b: 1}] },
          { $or: [{c: 1}, {d: 1}] }
      ]
  }, function (err, results) {
      ...
  }

Ma puoi anche usare Query#and helper disponibile nelle recenti versioni 3.x di Mongoose:

  Test.find()
      .and([
          { $or: [{a: 1}, {b: 1}] },
          { $or: [{c: 1}, {d: 1}] }
      ])
      .exec(function (err, results) {
          ...
      });