Last active
February 1, 2017 15:26
-
-
Save matsimitsu/29f98b1738e69217e07651861fa1b9c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.foo.insertMany([ | |
{ email: '[email protected]', course: 'a', purchaseDate: 10 }, | |
{ email: '[email protected]', course: 'b', purchaseDate: 20 }, | |
{ email: '[email protected]', course: 'c', purchaseDate: 5 }, | |
{ email: '[email protected]', course: 'c', purchaseDate: 6 }, | |
{ email: '[email protected]', course: 'b', purchaseDate: 10 }, | |
{ email: '[email protected]', course: 'a', purchaseDate: 5 }, | |
{ email: '[email protected]', course: 'd', purchaseDate: 1 }, | |
{ email: '[email protected]', course: 'd', purchaseDate: 1 }, | |
{ email: '[email protected]', course: 'a', purchaseDate: 1 } | |
]) | |
db.foo.aggregate([ | |
// Project the target purchasedate | |
{'$project': { | |
'email': 1, | |
'course': 1, | |
'purchaseDate': 1, | |
'target': { '$cond': [{'$eq': [ "$course", "a" ]}, "$purchaseDate", 0] } | |
}}, | |
// Group records by email, storing the target and the highest encountered purchase date | |
{'$group': { | |
'_id': '$email', | |
'target': {'$max': '$target'}, | |
'max': {'$max': "$purchaseDate"} | |
}}, | |
// Check if the highest encountered date is greater then the target | |
{'$project': { | |
'email': 1, | |
'target':1, | |
'max': 1, | |
'selected': {'$cond': [{'$gt': ['$max', '$target']}, true, false] } | |
}}, | |
// Filter out the non-matches | |
{'$match': { | |
'target': {'$gt': 0}, | |
'selected': true | |
}}, | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment