Coder Social home page Coder Social logo

Autopopulate - Select options argument(return all fields), issue with latest version of mongoose > 4.11.0 about mongoose-autopopulate HOT 2 CLOSED

mongodb-js avatar mongodb-js commented on May 27, 2024 1
Autopopulate - Select options argument(return all fields), issue with latest version of mongoose > 4.11.0

from mongoose-autopopulate.

Comments (2)

vkarpov15 avatar vkarpov15 commented on May 27, 2024 1

Thanks for reporting, will investigate ASAP 👍

from mongoose-autopopulate.

vkarpov15 avatar vkarpov15 commented on May 27, 2024

Upon closer inspection this looks like expected behavior because you have an autopopulate on personSchema.areaId. In 4.11.14 we made a bug fix that automatically selects paths that you call populate() on, so in this case your schema is configured to populate() on areaId whenever you load a Person. Notice that, for example, nickName doesn't show up in the output.

As a workaround, you can use the maxDepth option to make sure the bandSchema autopopulates don't trigger any person autopopulate:

            let bandSchema = new Schema({
                "name": String,
                "personId": {"type":ObjectId, "ref":CONFIG.PERSON_SCHEMA, "autopopulate":{"select" : "name", maxDepth: 1} }, // <-- note the `maxDepth: 1` here
                "areaId": {"type":ObjectId, "ref":CONFIG.AREA_SCHEMA }
            });

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.