Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recursive elements in Schema : Mongoose modelling

Any idea how to model a Tree document in Mongoose Schema?

var TreeSchema = new Schema({
    "Non-leafNode": {
        "children": [
            {
                "type": "NodeElement"
            }
        ]
    },
    "NodeElement": {
        // one of them is required. not both.
        "elem": {
            "type": "LeafNode"
        },
        "elem2": {
            "type": "Non-leafNode"
        }
    },
    "LeafNode": {}
});

How could one model this? The entire Tree is one document (ideally).

like image 506
ubreddy Avatar asked Nov 20 '15 11:11

ubreddy


1 Answers

From https://groups.google.com/forum/#!topic/mongoose-orm/0yUVXNyprx8:

By design, it might work. There's no tests for this. I have Schema#add in there for this purpose, to produce recursive references:

var Tasks = new Schema();
Tasks.add({
   title     : String
 , subtasks  : [Tasks]
});

So you need to construct the recursion step by step.

like image 113
w00t Avatar answered Sep 21 '22 22:09

w00t