sql >> Database >  >> NoSQL >> MongoDB

MongoDB opzoeken wanneer vreemd veld een array van objecten is

U kunt onderstaande aggregatie gebruiken met mongodb 3.6 en hoger

db.resources.aggregate([
  { "$match": { "type": "FUNC" } },
  { "$lookup": {
    "from": "initiatives",
    "let": { "id": "$_id" },
    "pipeline": [
      { "$match": { "$expr": { "$in": ["$$id", "$ressources.function"] } } },
      { "$unwind": "$ressources" },
      { "$match": { "$expr": { "$eq": ["$ressources.function", "$$id"] } } },
      { "$group": {
        "_id": "$ressources.function",
        "participation_sum": { "$sum": "$ressources.participating" }
      }}
    ],
    "as": "result"
  }}
])



  1. Ruby - op Redis gebaseerde mutex met implementatie van de vervaldatum

  2. MongoDB 3.2 authenticatie mislukt

  3. MongoDB gemaakte bestanden

  4. DbRef met Mongoose - mangoest-dbref of bevolken?