mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
feat(core): Refactor data table update row to use filters (no-changelog) (#19092)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { NodeOperationError } from 'n8n-workflow';
|
||||
import type {
|
||||
DataTableFilter,
|
||||
DataStoreRowReturn,
|
||||
IDataStoreProjectService,
|
||||
IDisplayOptions,
|
||||
@@ -94,7 +95,7 @@ export function getSelectFields(
|
||||
];
|
||||
}
|
||||
|
||||
export function getSelectFilter(ctx: IExecuteFunctions, index: number) {
|
||||
export function getSelectFilter(ctx: IExecuteFunctions, index: number): DataTableFilter {
|
||||
const fields = ctx.getNodeParameter('filters.conditions', index, []);
|
||||
const matchType = ctx.getNodeParameter('matchType', index, ANY_CONDITION);
|
||||
const node = ctx.getNode();
|
||||
|
||||
Reference in New Issue
Block a user