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

Virtuel befolke med Mongoose

Du kan bruge path-attributten til dybe links, dette ville også fungere for Array-typer.

documentId: { type: mongoose.ObjectId, ref: 'Media' },
schema.virtual('educationDocument', {   
    ref: 'Media', // the collection/model name
    localField: 'education.documentId',
    foreignField: '_id',
    justOne: true, // default is false });
const users = await User.find({})
    .populate({ path: 'educationDocument' })
    .populate({ path: 'experienceDocument' })
    .populate({ path: 'certificationDocument' })
    .execPopulate()


  1. MongoDB - Slap af array ved hjælp af aggregering og fjern dubletter

  2. Fjern et element fra et array mongodb tilsvarende i mongoose

  3. Skemaer i eksternt modul virker ikke i Node.js

  4. Redis :Hvordan kan jeg sortere min hash efter nøgler?