Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. Запрос
  2. db.clients_data_info.aggregate( [
  3. { "$lookup" : { "from" : "inn2markets" , "localField" : "inn" , "foreignField" : "inn" , "as" : "inn2markets"}} ,
  4. { "$lookup" : { "from" : "markets" , "localField" : "inn2markets.marketId" , "foreignField" : "_id" , "as" : "market"}} ,
  5. { "$lookup" : { "from" : "products_dict" , "localField" : "dictId" , "foreignField" : "_id" , "as" : "dict"}} ,
  6. { "$replaceRoot" : { "newRoot" : { "$mergeObjects" : [ { "$arrayElemAt" : [ "$dict" , 0]} , "$$ROOT"]}}} ,
  7. { "$project" : { "dict" : 0}} ,
  8.  
  9. { "$match" : { "date" : { "$lt" : { "$date" : "2018-06-23T21:00:00.000Z"}}}} ,
  10. { "$match" : { "date" : { "$gt" : { "$date" : "2018-06-22T21:00:00.000Z"}}}} ,
  11.  
  12. { "$group" : { "_id" : "$clientId" , "clientDataInfos" : { "$push" : "$$ROOT"}}} ,
  13. { "$lookup" : { "from" : "clients" , "localField" : "_id" , "foreignField" : "_id" , "as" : "client"}} ,
  14. { "$skip" : 0} , { "$limit" : 50}]
  15. )
  16.  
  17. clients_data_info
  18. {
  19. "_id" : ObjectId("5b2cdfc18c76fc1038457d9f"),
  20. "_class" : "io.ambuy.connect.orm.data.ClientDataInfo",
  21. "type" : "SHOPPINGLIST",
  22. "dictId" : ObjectId("5b2a247527e41ca6e2c436ab"),
  23. "count" : "22.05",
  24. "sum" : NumberLong(99997),
  25. "city" : "Москва",
  26. "src" : "0xcd2c0b1742c53b5f0fb53e06143110e98745cd9f",
  27. "date" : ISODate("2018-05-23T19:20:00.000Z"),
  28. "inn" : "7701285928",
  29. "clientId" : ObjectId("5b29617427e423187bf7819c")
  30. }
  31.  
  32. inn2markets
  33. {
  34. "_id" : ObjectId("5b2cdfc18c76fc1038457d9e"),
  35. "_class" : "io.ambuy.connect.orm.data.Inn2MarketExpandable",
  36. "market" : {
  37. "_id" : ObjectId("5b2cde2e8c76fc1038d92a47"),
  38. "name" : "lukoil",
  39. "icon" : "a89c0fd8-77af-4653-9117-8510b81049af.png"
  40. },
  41. "inn" : "7701285928",
  42. "originalName" : "ООО \"ЛУКОЙЛ-Центрнефтепродукт\"",
  43. "marketId" : ObjectId("5b2cde2e8c76fc1038d92a47")
  44. }
  45.  
  46. market
  47. {
  48. "_id" : ObjectId("5b2cdbf18c76fc1038e3851b"),
  49. "_class" : "io.ambuy.connect.orm.data.Market",
  50. "name" : "hello",
  51. "icon" : "d55459b9-3254-4378-852c-51796c03aaee.png"
  52. }
  53.  
  54. products_dict
  55. {
  56. "_id" : ObjectId("5b2d2ee68c76fc49fc5807f1"),
  57. "_class" : "io.ambuy.connect.orm.data.ProductDict",
  58. "strId" : "5b2d2ee68c76fc49fc5807f1",
  59. "name" : "Бананы 1кг",
  60. "status" : "NOT_CONFIRMED"
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement