Advertisement
davidemarceddu

Mostrare le 6 top destinazioni su base Nazione

Mar 30th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. //Voli: Mostrare le 6 top destinazioni su base Nazione (esclusa quella della pagina in cui ci si trova) con prezzo più basso nei prossimi 30 giorni. Ogni risultato sarà linkato alla relativa
  2. //landingpage “Destinazione”.passare come parametro la il codairport della stessa pagina e il codenation e le date
  3.  
  4. db.parsed_data.aggregate(
  5. //{$unwind: "$Segments"},
  6. {
  7. $match : {$and: [ {"Destination.Country" : "IT" }, {"Destination.Code": {$ne: "FLR"}},
  8. {"SearchDate": { $gte: ISODate("2017-03-17T00:00:00.000+01:00"), $lte: ISODate("2017-04-17T00:00:00.000+01:00") }}]}},
  9.  
  10.  
  11. {
  12. $group : {_id : "$Destination.Code" , minprice: { $min: "$Price"}
  13.  
  14. },
  15.  
  16. {$sort : {"minprice": 1}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement