sql >> Database >  >> NoSQL >> MongoDB

Mongoose/Mongodb Aggregate - groepeer en gemiddelde meerdere velden

Dit werkte voor mij:

  Post.aggregate([
    { $group: { _id: "$date", avgRating: { $avg: '$rating' }}}
  ]).
  then(function (res) {
    console.log(res); 
  })

Uitgang:

[
  { _id: 'Aug 18, 2021', avgRating: 3.0212234706616727 },
  { _id: 'Aug 19, 2021', avgRating: 2.9680319680319682 },
  { _id: 'Aug 20, 2021', avgRating: 3.023976023976024 },
  { _id: 'Aug 17, 2021', avgRating: 2.9600665557404326 },
  { _id: 'Aug 21, 2021', avgRating: 3.072661217075386 }
]

MAAR het zou geweldig zijn als ik dit op de een of andere manier zou kunnen filteren op basis van andere factoren. Elk bericht heeft bijvoorbeeld een auteur (verwijzing naar gebruikersmodel). Hoe kan ik filteren op basis van de landnaam of het geslacht van de auteur?

Gebruikersmodel:

const userSchema = new Schema({
email: {
    type: String,
    required: true,
    unique: true
},
birthday: {
    type: Date,
    required: true,
},
gender:{
    type: String,
    required: true
},
country:{
    name: {
        type: String,
        required: true
    },
    flag: {
        type: String,
        // default: "/images/flags/US.png"
    }
},
avatar: AvatarSchema,
displayName: String,
bio: String,
coverColor: {
    type: String,
    default: "#343a40"
},
posts: [ 
    {
    type: Schema.Types.ObjectId,
    ref: "Post" 
    }
],
comments: [
    {
        type: Schema.Types.ObjectId,
        ref: "Comment"
    }
],
postedToday: {
    type: Boolean,
    default: false
},
todaysPost: {
    type: String
}
}) 

Zoiets

    Post.aggregate([
    {$match: {"date": today}},
    {$group: {_id: {"country": "$author.country.name"}, avgRating: {$avg: "$rating"}}}
]).then(function(res) {
    console.log(res)
})



  1. MongoDB en Mongoid in productie

  2. Krijg namen van alle sleutels in de verzameling

  3. Mongo Query-vraag $gt,$lt

  4. Basisvragen tussen datums $gte, $lte, etc