Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to achieve the equivalent of this in mongoid (mongoid.org ORM):

 select * from parents 
 inner join children
 on parents.id = children.parent_id
 where children.created_at <= some_timestamp

Parent embeds a child, A child belongs to a parent

I have no issues up to this point: Parent.where(:child.exists => true), but I have no idea how I am supposed to do the equivalent of 'child.created_at'.lt => some_timestamp (Illegal to use a method on strings.)

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

Mongoid uses UTC Timestamps internally, to work with a date in a query you can do the following:

:'child.created_at'.lt => Time.now.midnight.utc
share|improve this answer
Apparently something along the lines of this: Parent.where(:child.exists => true, 'child.created_at'.lt => Time.now.midnight.utc) won't work, since its not possible to call #lt on a string. Symbols won't cut it too, because a :child.created_at dot '.' in there is illegal. Any ideas? – booya Jul 11 '11 at 6:48
'child.created_at'.to_sym.lt ??? – rubish Jul 11 '11 at 7:25
Yep, thanks. Or alternatively :'child.creater_at'.lt. The tip about timestamps was useful as well as I just had to change it:) – booya Jul 11 '11 at 10:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.