Created
          May 10, 2020 06:58 
        
      - 
      
- 
        Save inopinatus/3d7788a858d90b1ed9c323b7712f6f06 to your computer and use it in GitHub Desktop. 
    By Most
  
        
  
    
      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
    
  
  
    
  | module ByMost | |
| extend ActiveSupport::Concern | |
| included do | |
| scope :by_most, ->(assoc) { | |
| reflection = reflect_on_association(assoc) | |
| left_joins(assoc) | |
| .group(primary_key) | |
| .order(reflection.klass.arel_table[reflection.foreign_key].count.desc) | |
| } | |
| end | |
| end | 
      
      
  Author
  
  
        
      
            inopinatus
  
      
      
      commented 
        May 10, 2020 
      
    
  
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment