Structure :
Collection : merchant > id, name, country
I want to select all name field from this collection, but all the documentation I read says I must specify the name like :
$name = array('name' => 'test');
$cursor = $collection->find($name);
PS : Something like
select name from merchant
in sql is enough