Fix config formatting
[gitter.git] / scripts / useful-queries / top-public-rooms-by-chats.mongo
blob94e2864fa44e13818560ede09ad72d7d3d944e18
1 db.chatmessages.aggregate([
2   { $project: { t: '$toTroupeId' } },
3   { $group: { _id: '$t', s: { $sum: 1 }  } },
4   { $sort: { s: -1 } },
5   { $limit: 60 }
6 ]).result.forEach(function(f) {
7   var t = db.troupes.findOne({ _id: f._id });
8   if(t.security === 'PUBLIC') {
9     print(t.uri, f.s, t.security)  
10   }