Von https://groups.google.com/forum/#! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Sie müssen also die Rekursion Schritt für Schritt konstruieren.
Von https://groups.google.com/forum/#! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Sie müssen also die Rekursion Schritt für Schritt konstruieren.