When I have two MongoDB documents like this...
db.test.insert( {\"value\" : \"10123\"} ); db.test.insert( {\"value\" : \"160\"} );
The resu
You can use the following JavaScript expression:
db.test.find("this.value > 12")
This uses JavaScript's automatic conversion from string to number.