Any idea how to model a Tree document in Mongoose Schema?
var TreeSchema = new Schema({
\"Non-leafNode\": {
\"children\": [
{
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.