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

Come posso eseguire il filtro aggregato Mongodb per la raccolta multipla?

Ho spiegato il tuo problema precedente in Domanda . Poiché fatturaInfo è un array e invoiceData anche un array all'interno di invoiceInfo , utilizziamo mappa e filtro. Quindi dobbiamo escludere l'array vuoto di invoiceData . (Questo può essere fatto nel passaggio precedente anche come filter-map->filter, ma potrebbe essere lungo, ecco perché l'ho usato nella fase successiva)

Ecco il codice

db.bookings.aggregate([
  {
    "$match": {
      "PaymentStatus": { $ne: "Delivered" }
    }
  },
  {
    $set: {
      "BookingData.products": {
        "$filter": {
          "input": "$BookingData.products",
          "cond": {
            $and: [
              { $ne: [ "$$this.ProductID", undefined ] },
              { $ne: [ "$$this._id", null ] },
              { $ne: [ "$$this.IsDeliveryFailed", "Yes" ] }
            ]
          }
        }
      }
    }
  },
  {
    "$lookup": {
      "from": "invoices",
      "localField": "Invoices",
      "foreignField": "_id",
      "as": "invoiceInfo"
    }
  },
  {
    $set: {
      invoiceInfo: {
        $map: {
          input: "$invoiceInfo",
          as: "info",
          in: {
            InvoiceData: {
              $filter: {
                input: "$$info.InvoiceData",
                as: "data",
                "cond": {
                  $and: [
                    { $ne: [ "$$data.InvoiceID", undefined ] },
                    { $ne: [ "$$data.InvoiceID", null ] },
                    { $ne: [ "$$data.IsPaymentFailed", "Yes" ] }
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  {
    $set: {
      invoiceInfo: {
        $filter: {
          input: "$invoiceInfo",
          cond: { $ne: [ "$$this.InvoiceData", [] ] }
        }
      }
    }
  },
  {
    $match: {
      $expr: {
        $or: [
          { $ne: [ "$BookingData.products", [] ] },
          { $ne: [ "$invoiceInfo", [] ] }
        ]
      }
    }
  }
])

Lavoro parco giochi Mongo

Spero che questo ti aiuterà. Questo è il tempo di cui hai bisogno per giocare/riparare in base alle tue esigenze. A volte è necessario effettuare una ricerca prima o dopo la posizione corrente nella demo