class ReeDaoAggTest::AggUsersBenchmark

def call(ids_or_scope)

def call(ids_or_scope)
  agg(users, ids_or_scope) do
    belongs_to :organization
    has_many :books
    has_many :movies
    has_many :videogames
    has_many :hobbies
    has_many :vinyls
    has_many :pets
    has_many :skills
    has_many :dreams
    has_one :passport, -> { {foreign_key: :user_id, scope: user_passports} }
  end
end