My question is similar to this one, except I'm trying to do this in Mongoid.
I have two models:
class ImageUpload
include Mongoid::Document
referenced_in :post
end
class Post
include Mongoid::Document
references_many :image_uploads
end
How can I select the image uploads that are not associated with any post?