MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como posso usar um campo do agregado em uma regex $ match no mongodb?


Você pode usar abaixo aggregation usando $indexOfCP
db.users.aggregate([
  { "$lookup": {
    "from": "posts",
    "let": { "authorId": "$_id", "name": "$name" },
    "pipeline": [
      { "$match": {
        "$expr": {
          "$and": [
            { "$ne": [{ "$indexOfCP": ["$text", "$$name"] }, -1] },
            { "$eq": ["$author", "$$authorId"] }
          ]
        }
      }}
    ],
    "as": "post"
  }}
])