migrate only a specific epic with its child / linked workitems #957
-
hi , First of all thanks to development team. The tool is fantastic. I am able to do migration of all work items from one devops project to another devops project. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe this should help in lieu of other responses for the experts:
Then leave
**If you can figure out how to form a separate select statement on that commandline you could add just the Epic WorkItem ID then add the 'expand=Children' parameter. |
Beta Was this translation helpful? Give feedback.
I believe this should help in lieu of other responses for the experts:
I haven't seen a command that allows you to traverse a node in the config structure. However, I believe there are two ways to do this. One is the brute force and straightforward method which is to add all of the Work Items to the WorkItem List.
Then leave
"LinkMigration": true,
Or to increase performance, and take care of it implicitly, modify the WIQLQueryBit to the only query that tree structure. That would look something like this.
"WIQLQueryBit": "AND [System.WorkItemType] NOT IN ('Test Suite', 'Test Plan') AND [System.WorkIte…