Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8810675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:10:35+00:00 2026-06-14T03:10:35+00:00

2 models: Class User include Mongoid::Document has_many :reports end Class Report include Mongoid::Document belongs_to

  • 0

2 models:

Class User
 include Mongoid::Document
 has_many :reports
end

Class Report
 include Mongoid::Document
 belongs_to :user
end

I need a query to get all users have 6 or more reports, something like:.

Users.where(reports.count > 5)

I use mongo id 2.4.12

How can I do it?

Thank you very much!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T03:10:36+00:00Added an answer on June 14, 2026 at 3:10 am

    Ok, This query is not possible since MongoDB does not have joins.

    The fix for this problem is use a counter cache.

    The first option is make a counter cache something like:

    class User
      include Mongoid::Document
      field :reports_count, type: Integer
      has_many :reports
    end
    
    class Report
      include Mongoid::Document
      belongs_to :user
      after_create do |doc|
        doc.user.inc(:reports_count, 1)
      end
      after_destroy do |doc|
        doc.user.inc(:reports_count, -1)
      end
    end
    

    The second option (I have used this option) is use this gem https://github.com/jah2488/mongoid-magic-counter-cache.

    For this question:

    Models:

    class User
     include Mongoid::Document
     field :report_count
     has_many :reports
    end
    
    Class Report
     include Mongoid::Document
     include Mongoid::MagicCounterCache
     belongs_to :user
     end
    

    Inside a helper for example:

    def users_with_reports_greather_than_5
     users_with_reports_greather_than_5 = []
     for u in User.where(report_count.ne => nil)
      if u.report_count > 5
       users_with_reports_greather_than_5 << u
      end
     end
     return users_with_reports_greather_than_5.count
    end
    

    Regards!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three models: class User include Mongoid::Document field :name, :type => String has_many
Models: class User include Mongoid::Document embeds_many :user_topics end class UserTopic include Mongoid::Document embedded_in :user
I have 3 models class User < ... belongs_to :language has_many :posts end class
my models class Auction belongs_to :item belongs_to :user, :foreign_key => :current_winner_id has_many :auction_bids end
I have three Models: User, Picture, and Like where: class Picture include Mongoid::Document embeds_many
I have three models: category.rb class Category include Mongoid::Document # Relationships has_many :posts, :autosave
I have the following models: class User include Mongoid::Document embeds_many :user_missions attr_accessible :user_missions_attributes accepts_nested_attributes_for
I have two models: class User end class Message belongs_to :sender, :class_name=> 'User' belongs_to
I have following User model, embeds the Category model, class User include Mongoid::Document include
I have the following models class Track include Mongoid::Document field :artist, type: String field

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.