feat(core): Use filters for delete data table rows (no-changelog) (#19375)

This commit is contained in:
Daria
2025-09-11 10:31:27 +03:00
committed by GitHub
parent 6dd7797c39
commit b147709189
14 changed files with 384 additions and 138 deletions

View File

@@ -125,7 +125,7 @@ export async function executeSelectMany(
const PAGE_SIZE = 1000;
const result: Array<{ json: DataStoreRowReturn }> = [];
const limit = ctx.getNodeParameter('limit', index, undefined);
const limit = ctx.getNodeParameter('limit', index, 0);
let expectedTotal: number | undefined;
let skip = 0;