119

is possible in mongo db to select collection's documents like in SQL :

SELECT * FROM collection WHERE _id IN (1,2,3,4);

or if i have a _id array i must select one by one and then recompose the array/object of results?

KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
itsme
  • 48,972
  • 96
  • 224
  • 345

6 Answers6

231

Easy :)

db.collection.find( { _id : { $in : [1,2,3,4] } } );

taken from: https://www.mongodb.com/docs/manual/reference/operator/query/in/#mongodb-query-op.-in

tagurit
  • 494
  • 5
  • 13
programmersbook
  • 3,914
  • 1
  • 20
  • 13
15

Because mongodb uses bson and for bson is important attribute types. and because _id is ObjectId you must use like this:

db.collection.find( { _id : { $in : [ObjectId('1'),ObjectId('2')] } } );

and in mongodb compass use like this:

{ "_id" : { $in : [ObjectId('1'),ObjectId('2')] } }

Note: objectId in string has 24 length.

ttrasn
  • 4,322
  • 4
  • 26
  • 43
8

You can try this

var ids = ["5883d387971bb840b7399130","5883d389971bb840b7399131","5883d38a971bb840b7399132"];

var oids = [];
ids.forEach(function(item){
oids.push(new ObjectId(item));
});

.find({ _id: {$in : oids}})
klipmode
  • 81
  • 1
  • 1
6

list is a array of ids

In this code list is the array of ids in user collection

var list = ["5883d387971bb840b7399130","5883d389971bb840b7399131","5883d38a971bb840b7399132"]

    .find({ _id: {$in : list}})
KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
  • 4
    The code is not working. It seems have to set IDs as ObjectId("5883d387971bb840b7399130") – Pax Beach May 15 '18 at 09:13
  • How do we do set them to ObjectIds programmatically? I tried the approach suggested by @klipmode in one of the answers, but that does not work. – Vikalp Jain May 06 '21 at 04:36
0

if you want to find by user and also by another field like conditionally, you can easily do it like beneath with spread and ternary operator using aggregate and match

 const p_id = patient_id;
    let fetchingReports = await Reports.aggregate([
      ...(p_id
        ? [
            {
              $match: {
                createdBy: mongoose.Types.ObjectId(id),
                patient_id: p_id,
              },
            },
          ]
        : [
            {
              $match: {
                createdBy: mongoose.Types.ObjectId(id),
              },
            },
        
Ericgit
  • 6,089
  • 2
  • 42
  • 53
0

The query should be something like this:

db.collection.find( { 
        "_id": {
            "$in": [
                "475B9A5029D21",
                "385D808029D81",
                "C3463BD029DBB",
                "B839DB5029FFF"
            ]
        }
 } );
Shubham Verma
  • 8,783
  • 6
  • 58
  • 79