Advertisement
gaspan619

rating all

Oct 28th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $lookup:{
  2. from:"reviewlocations",
  3. localField:"_id",
  4. foreignField:"id_location",
  5. as: "list_rating"
  6. }
  7. $project:{
  8.  
  9. "rating_all":{
  10. $avg: "$list_rating.rating"
  11. }
  12. }
  13.  
  14.  
  15. if(result[i].rating_all == null){
  16. result[i].rating_all = "0"
  17. }else{
  18. result[i].rating_all = String(result[i].rating_all)
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement