Advertisement
bpinhosilva

Untitled

Jan 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. db.user.aggregate([
  2.     { "$match" : {
  3.         "$and" : [
  4.             { "account.subscriptions.subscriptionControl.lastRenewAttempt" : { "$exists" : true}},
  5.             { "account.subscriptions.subscriptionControl.lastRenewAttempt" : { "$lt" : ISODate("2018-01-23T02:00:00.000Z")}}        
  6.         ],
  7.         "account.subscriptions.subscriptionStatus" : "IN_RENEW_PROCESS"}
  8.     },
  9.     { "$unwind" : "$account.subscriptions"},
  10.     { "$match" : {
  11.         "$and" : [
  12.             { "account.subscriptions.subscriptionControl.lastRenewAttempt" : { "$exists" : true}},
  13.             { "account.subscriptions.subscriptionControl.lastRenewAttempt" : { "$lt" : ISODate("2018-01-23T02:00:00.000Z")}}        
  14.         ],
  15.         "account.subscriptions.subscriptionStatus" : "IN_RENEW_PROCESS"}
  16.     },
  17.     { "$group" : {
  18.         "_id" : "$_id" ,
  19.         "msisdn" : { "$first" : "$msisdn"} ,
  20.         "vendor" : { "$first" : "$vendor"} ,
  21.         "subs" : { "$push" : "$account.subscriptions"}}
  22.     },
  23.     { "$project" : {
  24.         "msisdn" : "$msisdn" ,
  25.         "vendor" : "$vendor" ,
  26.         "account.subscriptions" : "$subs" ,
  27.         "account.createDate" : "$createDate"}
  28.     }
  29. ])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement