Możesz użyć $type
operator z $not
w zapytaniu, aby wykluczyć dokumenty, w których age
jest ciągiem. W powłoce Twoje zapytanie wyglądałoby tak:
db.test.find({age: {$not: {$type: 2}}}).sort({age: -1}).limit(1)
Lub w PHP od Martti:
$cursor = $collection->find(array('age' => array('$not' => array('$type' => 2))), array('age' => 1));
$cursor->sort(array('price' => -1))->limit(1);