Mongomapper query collection problem

Posted by kylemac on Stack Overflow See other posts from Stack Overflow or by kylemac
Published on 2010-01-15T00:19:47Z Indexed on 2010/03/30 22:03 UTC
Read the original article Hit count: 385

Filed under:
|
|
|
|

When I define the User has_many meetings, it automatically creates a "user_id" key/value pair to relate to the User collections. Except I can't run any mongo_mapper finds using this value, without it returning nil or [].

Meeting.first(:user_id => "1234")

Meeting.all(:user_id => "1234")

Meeting.find(:user_id => "1234")

All return nil. Is there another syntax? Basically I can't run a query on the automatically generated associative ObjectId.



# Methods

class User
  include MongoMapper::Document

  key :user_name, String, :required => true
  key :password, String

  many :meetings
end

class Meeting
  include MongoMapper::Document

  key :name, String, :required => true
  key :count, Integer, :default => 1
end


# Sinatra

get '/add' do
  user = User.new
  user.meetings  "foobar") #should read: Meeting.new(:name => "foobar")
  user.save
end

get '/find' do
  test = Meeting.first(:user_id => "4b4f9d6d348f82370b000001") #this is the _id of the newly create user
  p test # WTF! returns []
end

© Stack Overflow or respective owner

Related posts about mongodb

Related posts about mongomapper