MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie kann ich ein Array von Werten in einer $match-Aggregation finden und das Ergebnis gruppieren?

Sie müssen Ihre filters ändern wie unten gezeigt.

Erklärung

  1. Wir fügen Filter in die Dokumentstruktur mit den $addFields ein Operator. Dies hilft uns, alle notwendigen Werte zu berechnen.
  2. Wir filtern toys mit den kürzlich enthaltenen filters Attribut mit dem $expr Betreiber.
  3. Anwenden des $filter Operator erhalten wir alle Spielzeuge mit dem gleichen code von filters . Jetzt können wir total berechnen und price_total Werte.
  4. Wir könnten total_coincidences berechnen innerhalb der $group Stufe wie folgt:

Aber Sie haben "distinct element" erwähnt. Also erstellen wir einen Satz einzigartiger Spielzeugcodes und zählen die Artikel im Satz.

db.collection.aggregate([
  {
    $unwind: "$toys"
  },
  {
    $addFields: {
      "filters": [
        {
          "code": 17001,
          "quantify": 2
        },
        {
          "code": 17003,
          "quantify": 4
        },
        {
          "code": 17005,
          "quantify": 5
        },
        {
          "code": 17005,
          "quantify": 6
        }
      ]
    }
  },
  {
    $match: {
      $expr: {
        $in: [ "$toys.code", "$filters.code"]
      }
    }
  },
  {
    $group: {
      _id: "$toystore_name",
      total_coincidences: {
        $addToSet: "$toys.code"
      },
      toy_array: {
        $push: {
          "price_original": "$toys.price",
          "toy": "$toys.toy",
          "total": {
            $size: {
              $filter: {
                input: "$filters",
                cond: {
                  $eq: [ "$$this.code", "$toys.code"]
                }
              }
            }
          },
          price_total: {
            $sum: {
              $map: {
                input: {
                  $filter: {
                    input: "$filters",
                    cond: {
                      $eq: [ "$$this.code", "$toys.code" ]
                    }
                  }
                },
                in: {
                  $multiply: [ "$toys.price", "$$this.quantify" ]
                }
              }
            }
          }
        }
      }
    }
  },
  {
    $addFields: {
      total_coincidences: {
        $size: "$total_coincidences"
      }
    }
  },
  {
    $sort: { _id: 1 }
  }
])

MongoPlayground