luigi icon indicating copy to clipboard operation
luigi copied to clipboard

children property returns a promise

Open JohannesDoberer opened this issue 11 months ago • 0 comments

Add documentation that children property can also return a promise like:

children:  () => {
       return new Promise((resolve, reject) => {
             fetch('/noed/endpoint').then((...)=>{
               ...
               resolve(nodes);
             });
       })
}

JohannesDoberer avatar Mar 05 '24 15:03 JohannesDoberer