luigi
luigi copied to clipboard
children property returns a promise
Add documentation that children property can also return a promise like:
children: () => {
return new Promise((resolve, reject) => {
fetch('/noed/endpoint').then((...)=>{
...
resolve(nodes);
});
})
}