“Mongo -Grafelemente in Array” Code-Antworten

Mongo -Grafelemente in Array

> db.mycollection.insert({'foo':[1,2,3,4]})
> db.mycollection.insert({'foo':[5,6,7]})

> db.mycollection.aggregate([{$project: { count: { $size:"$foo" }}}])
{ "_id" : ObjectId("5314b5c360477752b449eedf"), "count" : 4 }
{ "_id" : ObjectId("5314b5c860477752b449eee0"), "count" : 3 }
Lucky Lobster

Mongo -Grafelemente in Array

{ $size: <expression> }
Lucky Lobster

MongoDB Count Array Größe

db.inventory.aggregate([
   {
      $project: {
         item: 1,
         numberOfColors: { $cond: { if: { $isArray: "$colors" }, then: { $size: "$colors" }, else: "NA"} }
      }
   }
] )
Suspect Camel

Ähnliche Antworten wie “Mongo -Grafelemente in Array”

Fragen ähnlich wie “Mongo -Grafelemente in Array”

Weitere verwandte Antworten zu “Mongo -Grafelemente in Array” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen