```dataviewjs dv.taskList( dv.current().file .tasks .filter(t=>!t.completed) .map(t => { t.children = []; t.parent = 0; return t; })) ```