sql >> Database >  >> NoSQL >> MongoDB

Tel een subdocumenteigenschap in een projectie met MongoDB en Javascript

  • $map om de lus van subRoom te herhalen array en in om verplichte velden terug te geven
  • $filter herhalen van notifications en $size om het totale aantal elementen uit het gefilterde resultaat te halen
db.collection.find({ id: 1 },
{
  _id: 0,
  room: 1,
  notRead: {
    $size: {
      $filter: {
        input: "$notifications",
        cond: {
          $not: { $in: ["User1", "$$this.read"] }
        }
      }
    }
  },
  "subRoom": {
    $map: {
      input: "$subRoom",
      in: {
        id: "$$this.id",
        notRead: {
          $size: {
            $filter: {
              input: "$$this.notifications",
              cond: { $not: { $in: ["User1", "$$this.read"] } }
            }
          }
        }
      }
    }
  }
})

Speeltuin




  1. Spring Data MongoDB-aggregatie - match op berekende waarde

  2. Hoe mongodb te starten vanuit dockerfile

  3. Schakel tussen JPA en Mongo in de Spring Boot MVC-app

  4. Hoe hernoem je een MongoDB-database?