Hi, how I can work with number fields, like:
$cursor = self::find(array(
    '155' => array('$exists'=>true)
));And how I can get needed fields?
$cursor = self::find(
    array('user.name' => 'john'),
    array('user.name' => 1)
);Thanks.
P.S> About first question i look in source code, in my opinion it's "crutch". @phalcon