feat(Compare Datasets Node): Fuzzy compare option

This commit is contained in:
Michael Kret
2023-01-04 14:37:54 +02:00
committed by GitHub
parent 54126b2c87
commit 9615253155
4 changed files with 244 additions and 14 deletions

View File

@@ -129,6 +129,14 @@ export const optionsDescription: INodeProperties[] = [
},
},
},
{
displayName: 'Fuzzy Compare',
name: 'fuzzyCompare',
type: 'boolean',
default: false,
description:
"Whether to tolerate small type differences when comparing fields. E.g. the number 3 and the string '3' are treated as the same.",
},
{
displayName: 'Include Any Unpaired Items',
name: 'includeUnpaired',