Reputation: 104
How make a query in to Mongoid, 'where is not null'?For example
where('comment_id IS NOT NULL')
how make it with mongoid?
Upvotes: 3
Views: 3385
Reputation: 118271
You can write using $ne
where(:comment_id.ne => nil)
Relevant documentation of queries.
Upvotes: 12