Created
November 1, 2013 16:36
-
-
Save stevedev/7268083 to your computer and use it in GitHub Desktop.
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
u = User.find_by_username 'issuer' | |
u.notifications.limit(1).size | |
# => 1 | |
u.notifications.group(:record_class).limit(1).size | |
# => {"Posting"=>2} |
Thanks for making that bold, github!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
u.notifications.group(:record_class).limit(1).all.size
=> 1