From 50548d44c45679853700f403d6e1d942aa0eb23b Mon Sep 17 00:00:00 2001 From: Housemann <40449280+Housemann@users.noreply.github.com> Date: Fri, 17 Jul 2026 20:44:32 +0200 Subject: [PATCH] Filter out N/A cover_url in backfill select query Switch node from visual select to executeQuery to exclude cover_url = 'N/A' entries which are not valid image URLs. Co-Authored-By: Claude Sonnet 4.6 --- n8n/FileBot_Cover_Backfill.json | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/n8n/FileBot_Cover_Backfill.json b/n8n/FileBot_Cover_Backfill.json index 167e2af..cbb475c 100644 --- a/n8n/FileBot_Cover_Backfill.json +++ b/n8n/FileBot_Cover_Backfill.json @@ -1794,32 +1794,8 @@ }, { "parameters": { - "operation": "select", - "schema": { - "__rl": true, - "value": "n8n", - "mode": "list", - "cachedResultName": "n8n" - }, - "table": { - "__rl": true, - "value": "movie_files", - "mode": "list", - "cachedResultName": "movie_files" - }, - "returnAll": true, - "where": { - "values": [ - { - "column": "cover_image", - "condition": "IS NULL" - }, - { - "column": "cover_url", - "condition": "IS NOT NULL" - } - ] - }, + "operation": "executeQuery", + "query": "SELECT * FROM n8n.movie_files WHERE cover_image IS NULL AND cover_url IS NOT NULL AND cover_url != 'N/A'", "options": {} }, "type": "n8n-nodes-base.postgres",