$type
を使用できます $not
の演算子 age
のドキュメントを除外するクエリで 文字列です。シェルでは、クエリは次のようになります。
db.test.find({age: {$not: {$type: 2}}}).sort({age: -1}).limit(1)
または、MarttiのPHPの場合:
$cursor = $collection->find(array('age' => array('$not' => array('$type' => 2))), array('age' => 1));
$cursor->sort(array('price' => -1))->limit(1);