Answers for "mongoose find and populate"

0

mongoose populate filter

Story.
  find(...).
  populate({
    path: 'fans',
    // filtering field, you can use mongoDB syntax
    match: { age: { $gte: 21 } },
    // Explicitly exclude `_id`, see http://bit.ly/2aEfTdB
    select: 'name -_id'
  }).
  exec();
Posted by: Guest on June-16-2020
0

mongoos populate a ref

const storySchema = Schema({
  authors: [{ type: Schema.Types.ObjectId, ref: 'Person' }],
  title: String
});

// Later

const story = await Story.findOne({ title: 'Casino Royale' }).populate('authors');
story.authors; // `[]`
Posted by: Guest on April-28-2020

Code answers related to "mongoose find and populate"

Code answers related to "Javascript"

Browse Popular Code Answers by Language