$posts = $collection->find();
各投稿が参照されているカテゴリをどのようにロードする必要がありますか?
//1 Document from $posts
{
"_id": ObjectId("502803b6d4ebdfd805000032"),
"title": "abcd",
"message": "abc",
"category": {
"$ref": "categories",
"$id": ObjectId("5027e15dd4ebdfd80500001e")
}
}
//the document in categories referenced from the post above
{
"_id": ObjectId("5027e15dd4ebdfd80500001e"),
"name": "miscellaneous",
"slug": "miscellaneous",
"description": "",
"created_at": ISODate("2012-08-12T17: 01: 17.0Z"),
"updated_at": ISODate("2012-08-12T19: 27: 50.0Z")
}