Můžete použít $type
operátor s $not
ve vašem dotazu vyloučíte dokumenty, kde age
je řetězec. V shellu by váš dotaz vypadal takto:
db.test.find({age: {$not: {$type: 2}}}).sort({age: -1}).limit(1)
Nebo v PHP od Marttiho:
$cursor = $collection->find(array('age' => array('$not' => array('$type' => 2))), array('age' => 1));
$cursor->sort(array('price' => -1))->limit(1);