Skip to content

Commit d804113

Browse files
authored
fix: W-11881361 Filter out legacy Vlocity Cads
fix: W-11881361 Filter out legacy Vlocity Cads
2 parents aa88200 + 9a1e96e commit d804113

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/migration/flexcard.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ export class CardMigrationTool extends BaseMigrationTool implements MigrationToo
7878
// const filterStr: string = ` Where ${this.namespacePrefix}Active__c = true`
7979
const filters = new Map<string, any>();
8080
filters.set(this.namespacePrefix + 'Active__c', true);
81+
filters.set(this.namespacePrefix + 'CardType__c', 'flex');
8182

8283
return await QueryTools.queryWithFilter(this.connection, this.namespace, CardMigrationTool.VLOCITYCARD_NAME, this.getCardFields(), filters);
8384
}

0 commit comments

Comments
 (0)