Would it be possible to return the values as arguments as well as in the context? This would be helpful to keep the context instead of keeping track of this
for example:
return new Promise((resolve)={
branch.queryNodes(query, pagination).then((nodeMap)=>{
resolve(nodeMap)
}
});
Would it be possible to return the values as arguments as well as in the context? This would be helpful to keep the context instead of keeping track of
this
for example: