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).
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With