<slide>
<title>Querying (with projection)</title>

<example result="0"><![CDATA[<?php
$m = new MongoClient();

// Find with 'projection'
$record = $m->demo->talks->findOne(
  [ 'talks.title' => 'Xdebug' ],
  [ 'name' => 1, 'talks.url' => 1 ]
);
?>]]></example>
</slide>

