Struktura modelu jest nieprawidłowa jak w Mongo
przechowujesz tylko informacje w osadzonych dokumentach, które są wymagane tylko w dokumencie nadrzędnym.
Jeśli w gościach masz tylko pole statusu, możesz spróbować tego, np. dwa typy statusu obecny lub nieobecny
class User
include Mongoid::Document
has_and_belongs_to_belongs_to :event, :inverse_of => "present_guests"
has_and_belongs_to_belongs_to :event, :inverse_of => "not_present_guests"
end
class Event
include Mongoid::Document
has_and_belongs_to_many :present_guests, :class_name => "User", :inverse_of => "present_guests"
has_and_belongs_to_has_many :not_present_guests, :class_name => "User", :inverse_of => "not_present_guests"
end
następnie możesz zapytać o status jak
Event.first.present_guests