With the PHP MongoDb Client, the find function allows a second argument to specifiy the fields you want to include in the result.
$cursor = $collection->find(
array('_id' => array('$in' => $ids)),
array('_id' => true, 'title' => true, 'subtitle' => true, 'slug' => true, 'description' => true)
);
I'm having trouble trying to do similar with the Phalcon ODM. Is it possible to set field options in the conditions?
$articles = Article::find(
array(
'conditions' => array('_id' => array('$in' => $ids)),
)
);