Created
December 9, 2011 09:40
-
-
Save durran/1450910 to your computer and use it in GitHub Desktop.
ML query
This file contains hidden or 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
# Get the count of notifications for this user | |
# and this post that need to be sent or have *not* | |
# been sent in the past 24 hours | |
User. | |
where({ _id: user._id, "notifs.post_id" => post_id }). | |
any_of( | |
{ "notifs.needs_send" => true }, | |
{ "notifs.last_send" => { '$exists' => false }}, | |
{ "notifs.last_send" => { "$lt" => 1.days.ago.utc }} | |
).count |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment