Da https://groups.google.com/forum/#! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Quindi devi costruire la ricorsione passo dopo passo.
Da https://groups.google.com/forum/#! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Quindi devi costruire la ricorsione passo dopo passo.