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 <noreply@anthropic.com>
This commit is contained in:
Housemann
2026-07-17 20:44:32 +02:00
co-authored by Claude Sonnet 4.6
parent 14c9bef002
commit 50548d44c4
+2 -26
View File
@@ -1794,32 +1794,8 @@
}, },
{ {
"parameters": { "parameters": {
"operation": "select", "operation": "executeQuery",
"schema": { "query": "SELECT * FROM n8n.movie_files WHERE cover_image IS NULL AND cover_url IS NOT NULL AND cover_url != 'N/A'",
"__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"
}
]
},
"options": {} "options": {}
}, },
"type": "n8n-nodes-base.postgres", "type": "n8n-nodes-base.postgres",