Interface FilterV2NodeParameters

Source
interface FilterV2NodeParameters {
    conditions?: unknown;
    looseTypeValidation?: boolean;
    options?: {
        ignoreCase?: boolean;
        looseTypeValidation?: boolean;
    };
}

Properties§

Source§

readonly conditions?: unknown

Default: {} Type options: {"filter":{"caseSensitive":"={{!$parameter.options.ignoreCase}}","typeValidation":"={{ ($nodeVersion < 2.1 ? $parameter.options.looseTypeValidation : $parameter.looseTypeValidation) ? "loose" : "strict" }}","version":"={{ $nodeVersion >= 2.2 ? 2 : 1 }}"}}

Source§

readonly looseTypeValidation?: boolean

If the type of an expression doesn't match the type of the comparison, n8n will try to cast the expression to the required type. E.g. for booleans "false" or 0 will be cast to false

Source§

readonly options?: { ignoreCase?: boolean; looseTypeValidation?: boolean }

Default: {}