Update web scraping node output structure in workflowStore

- Modified the output of the web scraping node to return the complete result data instead of just the content, enhancing the information available for further processing.
This commit is contained in:
Nikhil-Doye
2025-10-17 14:27:08 -04:00
parent efe18c1a8a
commit 0788e615b5
+1 -1
View File
@@ -499,7 +499,7 @@ const processWebScrapingNode = async (
if (result.success && result.data) {
return {
output: result.data.content,
output: result.data,
url,
metadata: result.data.metadata,
markdown: result.data.markdown,