MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

È necessaria una soluzione alternativa per la ricerca di una stringa in objectID outsideField

Novità nella 4.0:https://docs.mongodb.com/manual/reference/operator/aggregation/toObjectId/

// Define stage to add convertedId field with converted _id value

idConversionStage = {
   $addFields: {
      convertedId: { $toObjectId: "$_id" }
   }
};

// Define stage to sort documents by the converted qty values

sortStage = {
   $sort: { "convertedId": -1 }
};


db.orders.aggregate( [
   idConversionStage,
   sortStage
])