Mongoid greater than date or not nil

2.9k Views Asked by At

I have two models

class Conversation
  include Mongoid::Document 

  field :last_moderated_at, type: DateTime
  has_many :messages
end

class Message
  include Mongoid::Document
  include Mongoid::Timestamps
end

I want to get the list of all messages that were created after the moderation date, or all of them if the moderation date is nil

I had expected the following to work

conversation.messages.where(
      :created_at.gte => conversation.last_moderated_at
    )

But apparently the comparison with nil fails (when last_moderated_at == nil)

Do I have no choice but to use an if/else or is there a mongoDB operator of type greater than that also works when compared to nil dates ?

EDIT : A simpler example : Conversation.where(:created_at.gte => nil).count will always return 0

2

There are 2 best solutions below

0
On

I think you are gonna have to to something like this:

conversation = Conversation.find 'some_id'

Message.where(
      conversation: conversation,
      :created_at.gte => conversation.last_moderated_at
    )
1
On

The syntax is correct. It does work on Mongoid version 6, at least.