Re-migrate updated work items #1805
-
After I run the initial migration of all work items I would like to run a new migration to just refresh the work items that has been updated since the last migration. I've tried to use the processor WorkItemPostProcessingConfig like this;
And like this:
But everything I try gives 0 result:
Is this even possible to do? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To re-migrate the same work items with on the changes we run the same config with It may be a good idea (for speed) to add a date filter to the QueryBit. WIQL is localised so you will need to create a query that matches your region, but this is what I get:
|
Beta Was this translation helpful? Give feedback.
To re-migrate the same work items with on the changes we run the same config with
FilterWorkItemsThatAlreadyExistInTarget": false,
.It may be a good idea (for speed) to add a date filter to the QueryBit. WIQL is localised so you will need to create a query that matches your region, but this is what I get:
AND [System.ChangedDate] > "2023-01-12" AND [System.WorkItemType] IN ('Product Backlog Item')