FilterWorkItemsThatAlreadyExistInTarget
Ref
Less than 1 minute to read
2024-08-27 03:49:54 -0500
draft
This page is in draft and may include errors or omissions. Please check the discussions for any pending updates and changes to the content or to suggest your own changes.
missng XML code comments
Options
Parameter name | Type | Description | Default Value |
Enabled | Boolean | If enabled this will run this migrator | true |
Query | QueryOptions | missng XML code comments | missng XML code comments |
RefName | String | For internal use | missng XML code comments |
Example
A basic sample for FilterWorkItemsThatAlreadyExistInTarget configuration.
1
2
3
4
5
6
7
8
9
{
"$type": "FilterWorkItemsThatAlreadyExistInTargetOptions",
"Enabled": true,
"Query": {
"$type": "QueryOptions",
"Query": "SELECT [System.Id], [System.Tags] FROM WorkItems WHERE [System.TeamProject] = @TeamProject AND [System.WorkItemType] NOT IN ('Test Suite', 'Test Plan') ORDER BY [System.ChangedDate] desc",
"Parameters": null
}
}