janez89 / mongoose-materialized

mongoose materialized plugin
59 stars 22 forks source link

Populating references #17

Open tmld opened 9 years ago

tmld commented 9 years ago

Is there a way to get the tree structure with ObjectId references populated?

E.g. Lets say I have a tree structure like the simplified structure below, where the users being stored as ObjectId references:

{
    title: "Clean House",
    users: ["Bob", "Sam"],
    children: [
        {
            title: "Clean Kitchen",
            users: ["Bob", "Sam"],
            children: [
                {
                    title: "Clean Oven",
                    users: ["Bob"]
                },
                {
                    title: "Clean Sink",
                    users: ["Sam"]
                }
            ]
        }
    ]
}

Is it possible for the results of getArrayTree to contain the populated users, instead of their ObjectId's?

burakkilic commented 8 years ago

+1