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

Find using _id funktioniert nicht mit Aggregation

Mongoose castet String nicht zu ObjectId in Gesamtfunktion. Sie müssen es also manuell mit Mungo zaubern.

var mongoose = require('mongoose')

const existedRelation = await this.model.aggregate([
  { "$match": { "_id": mongoose.Types.ObjectId(firstId) } },
  { "$project": {
    "relations": {
      "$filter": {
        "input": "$links",
        "as": "link",
        "cond": {
          "$and": [
            { "$eq": ["$$link.target.entityId", `${objectIdValue}`] },
            { "$eq": ["$$link.linkTypeId", linkTypeId] }
          ]
        }
      }
    }
  }}
])