From 9f13d7f63d40bf01d2fa070fb48ecc5bc3de1d15 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Tue, 17 Mar 2026 11:11:19 +0100 Subject: [PATCH] fix: use splitInBatches with basePath option instead of itemLists - Revert to splitInBatches node type for compatibility - Add basePath option set to 'data' to extract items from data array - This tells n8n to iterate over the data array specifically --- n8n-workflows/workflow-a-http.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/n8n-workflows/workflow-a-http.json b/n8n-workflows/workflow-a-http.json index 4d52229..cabafc9 100644 --- a/n8n-workflows/workflow-a-http.json +++ b/n8n-workflows/workflow-a-http.json @@ -32,12 +32,14 @@ { "id": "uuid-split-results", "name": "Split Results", - "type": "n8n-nodes-base.itemLists", - "typeVersion": 4, + "type": "n8n-nodes-base.splitInBatches", + "typeVersion": 3, "position": [650, 200], "parameters": { - "mode": "splitOut", - "splitField": "data" + "batchSize": 1, + "options": { + "basePath": "data" + } } }, {