mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix(Notion Node): Fix is_empty query on formula fields (#8397)
This commit is contained in:
parent
d597c2ab29
commit
08e7db4648
|
@ -559,12 +559,16 @@ export function mapFilters(filtersList: IDataObject[], timezone: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (value.type === 'formula') {
|
if (value.type === 'formula') {
|
||||||
const vpropertyName = value[`${camelCase(value.returnType as string)}Value`];
|
if (['is_empty', 'is_not_empty'].includes(value.condition as string)) {
|
||||||
|
key = value.returnType;
|
||||||
|
} else {
|
||||||
|
const vpropertyName = value[`${camelCase(value.returnType as string)}Value`];
|
||||||
|
|
||||||
return Object.assign(obj, {
|
return Object.assign(obj, {
|
||||||
['property']: getNameAndType(value.key as string).name,
|
['property']: getNameAndType(value.key as string).name,
|
||||||
[key]: { [value.returnType]: { [`${value.condition}`]: vpropertyName } },
|
[key]: { [value.returnType]: { [`${value.condition}`]: vpropertyName } },
|
||||||
});
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Object.assign(obj, {
|
return Object.assign(obj, {
|
||||||
|
|
Loading…
Reference in a new issue