De https://groups.google.com/forum/# ! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Vous devez donc construire la récursivité étape par étape.
De https://groups.google.com/forum/# ! topic/mongoose-orm/0yUVXNyprx8 :
var Tasks = new Schema();
Tasks.add({
title : String
, subtasks : [Tasks]
});
Vous devez donc construire la récursivité étape par étape.