-
-
Save araslanov-e/5865519 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'mongoid' | |
Mongoid.configure do |config| | |
config.master = Mongo::Connection.new.db("so_test") | |
end | |
class Client | |
include Mongoid::Document | |
belongs_to :contact | |
field :name, type: String | |
end | |
class Contact | |
include Mongoid::Document | |
has_many :clients | |
field :name, type: String | |
end | |
Contact.create(:name => "Bill") | |
jill = Contact.create(:name => "Jill") | |
jill.clients.create(:name => "Steve") | |
p "Has Clients" | |
Contact.any_in(_id: Client.all.distinct("contact_id")).each do |c| | |
p c | |
end | |
p "No Clients" | |
Contact.not_in(_id: Client.all.distinct("contact_id")).each do |c| | |
p c | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment