Coder Social home page Coder Social logo

Comments (3)

vkarpov15 avatar vkarpov15 commented on May 26, 2024 1

Thanks for reporting, I opened up an issue in the mongoose repo so we can track this in mongoose's milestones.

from mongoose-autopopulate.

vkarpov15 avatar vkarpov15 commented on May 26, 2024

I can't repro this issue, the below code works correctly with mongoose 5.1.2 and mongoose-autopopulate 0.7.0. Can you modify the below script to reproduce your issue and clarify your versions of mongoose and mongoose-autopopulate?

const assert = require('assert');
const mongoose = require('mongoose');
mongoose.set('debug', true);

const GITHUB_ISSUE = `gh6522`;
const connectionString = `mongodb://localhost:27017/${ GITHUB_ISSUE }`;
const { Schema } = mongoose;

run().then(() => console.log('done')).catch(error => console.error(error.stack));

async function run() {
  await mongoose.connect(connectionString);
  await mongoose.connection.dropDatabase();

  const clientSchema = new mongoose.Schema({
    service: {
      net: {
        radio: { 
          accessPointName: String
        } 
      }
    }
  }, { toJSON: { virtuals: true }, toObject: { virtuals: true } });

  clientSchema.virtual(`service.net.radio.accessPoint`, {
    ref: `settings.accessPoint`,
    localField: `service.net.radio.accessPointName`,
    foreignField: `name`,
    autopopulate: true
  });
  clientSchema.plugin(require(`mongoose-autopopulate`));
  const Client = mongoose.model(`client`, clientSchema);

  const accessPointSchema = new mongoose.Schema({
    name: {
      required: true,
      type: String,
      trim: true
    }
  }, { collection: `settings.accessPoints` });
  const AccessPoint = mongoose.model(`settings.accessPoint`, accessPointSchema);

  await AccessPoint.create({ name: 'test' });
  await Client.create({ service: { net: { radio: { accessPointName: 'test' } } } });

  const doc = await Client.findOne();
  console.log(doc.toObject().service.net.radio.accessPoint);
}

Output:

$ node gh-6522.js 
Mongoose: settings.accessPoints.insertOne({ _id: ObjectId("5b0981d32ef452707b660567"), name: 'test', __v: 0 })
Mongoose: clients.insertOne({ service: { net: { radio: { accessPointName: 'test' } } }, _id: ObjectId("5b0981d32ef452707b660568"), __v: 0 })
Mongoose: clients.findOne({}, { fields: {} })
Mongoose: settings.accessPoints.find({ name: { '$in': [ 'test' ] } }, { maxDepth: 10, _depth: 1, fields: {} })
[ { _id: 5b0981d32ef452707b660567, name: 'test', __v: 0 } ]
done
^C
$ 

from mongoose-autopopulate.

TKasperczyk avatar TKasperczyk commented on May 26, 2024

It turned out my find queries had .lean() appended to them. I didn't expect that it might stop mongoose-autopopulate from triggering. Without lean() it works as expected. Sorry for that, the issue can be closed.

from mongoose-autopopulate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.