Trying to work out how to do a mongoid query to return Documents with a range of embeded documents e.g.
class Question
embeds_many :question_response,
get questions that have only 1,2 or 3 responses
Question.between(:question_response.count, 1, 3)
Any ideas?