fix: resolve double URL-encoding in datatable filter/sortBy query params (#652)

This commit is contained in:
Romuald Członkowski
2026-03-22 15:59:34 +01:00
committed by GitHub
parent c5665632af
commit 6f6668acc4
34 changed files with 599 additions and 45 deletions

View File

@@ -9,7 +9,7 @@ export const n8nManageDatatableDoc: ToolDocumentation = {
example: 'n8n_manage_datatable({action: "createTable", name: "Contacts", columns: [{name: "email", type: "string"}]})',
performance: 'Fast (100-500ms)',
tips: [
'Table actions: createTable, listTables, getTable, updateTable, deleteTable',
'Table actions: createTable, listTables, getTable, updateTable (rename only), deleteTable',
'Row actions: getRows, insertRows, updateRows, upsertRows, deleteRows',
'Use dryRun: true to preview update/upsert/delete before applying',
'Filter supports: eq, neq, like, ilike, gt, gte, lt, lte conditions',
@@ -22,7 +22,7 @@ export const n8nManageDatatableDoc: ToolDocumentation = {
- **createTable**: Create a new data table with optional typed columns
- **listTables**: List all data tables (paginated)
- **getTable**: Get table details and column definitions by ID
- **updateTable**: Rename an existing table
- **updateTable**: Rename an existing table (name only — column modifications not supported via API)
- **deleteTable**: Permanently delete a table and all its rows
**Row Actions:**