Migration of only certain Work items #1787
-
Hello guys, I need to migrate some work items from one organization to another, but I don't want all of them to be migrated. So I got the ID's of the ones I need to migrate. I tried to use the WorkItemIDs in the JSON, but it didn't work out. Probably I am doing something wrong. Can anybody help me with that? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
On the WorkItemMigrationConfig Processor, add something like this to the WIQLQueryBit: "WIQLQueryBit": "AND [System.WorkItemType] IN ( 'User Story' ) AND [System.Id] IN (100, 200, 300, 400)", See if that works :) |
Beta Was this translation helpful? Give feedback.
-
hey, thanks that works, but can you tell me what this WorkItemIDs field does? |
Beta Was this translation helpful? Give feedback.
On the WorkItemMigrationConfig Processor, add something like this to the WIQLQueryBit:
"WIQLQueryBit": "AND [System.WorkItemType] IN ( 'User Story' ) AND [System.Id] IN (100, 200, 300, 400)",
See if that works :)