Rubyでは、mongomapperなどを使用して、コレクションから取得した任意のドキュメントをトラバースするにはどうすればよいですか?ドキュメントが次のようになっているとしましょう。
mydocs = [{
"title": "my title",
"description": "hello world",
"comments": [{
"user": "me",
"text": "this"
}, {
"user": "him",
"text": "that"
}]
},
{
.....
}
]