Open daniel-ohrn opened 4 years ago
I meet the same issues; are you solve it? @daniel-ohrn
// finishDate should greater startDate
//@ts-ignore
const postedNode: WorkItemClassificationNode = {
name: newNodeName,
attributes: {
startDate: startDate_1,
finishDate: endDate_2,
},
structureType: TreeNodeStructureType.Iteration
};
this is working for me
Hey,
Let's hope this question ends up in the right place:
We have been struggling with this issue for quite a while now, what we are trying to achieve is to create nested classification nodes via the azure-devops-extension-api package according to the following structure:
-Root --Release ---Sprint 1 ---Sprint 2
This works as expected when using the REST-api directly but when we use the npm package the classification nodes gets created in a flat structure directly under the root node.
We have tried many different versions of the code below but since none of them works my question is as follows:
How do I create a child node under a parent?