Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is it possible to find all records in an collection where the MongoID is not in an provided array?

Something like this (?):

        $search = array(
            '_id'    => array('$ne' => $ids) 
            'readby' => array('$ne' => $userId) // works
        );

Iam using PHP with the Mongo Extension.

share|improve this question
1  
hope this help <?php $cursor = $collection->find(array("awards" => array('$in' => array("gold", "copper")))); ?> php.net/manual/en/mongo.queries.php – Haim Evgi Sep 12 '11 at 11:07

1 Answer

up vote 2 down vote accepted

Use $nin instead of $ne with arrays. Something like:

$search = array(
    '_id' => array('$nin' => $ids),
    'readby' => array('$ne' => $userId)
);

should do what you want.

share|improve this answer
1  
Thanks does the trick (important: the entries inside ids must be form type MongoId()!) – ArneRie Sep 12 '11 at 14:36
Right. They can be any type, but if you're matching against MongoId/ObjectId, you have to use that type. – dcrosta Sep 12 '11 at 15:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.