RSS Feed -> Check if New -> Google Sheet (not working 😢)

Heya,

I want to build a scraper for sourcing startups. Baby steps, I’m using the RSS feed from producthunt. I want to every day call the RSS feed, check what startups are new and then put them in a google sheet.

Currently, I’ve got the RSS feed, setting the titles and posting to google sheet but my code for checking if new isn’t working (I copied it off another workflow). Everytime I run the workflow it just copies everything every time.

V basic coding knowledge, so any help with how to code to look for duplicates and then only move forwards those which are new would be awesome!

[running on N8n.cloud

Share the output returned by the last node

Hey @EdKandel,

The code in the Function node uses the getWorkflowStaticData method. This method will return all the outputs when you execute the workflow manually. However, this method works as expected only when your workflow is running in production. You can read more about this method here: Function | Docs

I’ve also written a blog post that is based on a similar topic. You can read it here: Creating triggers for n8n workflows using polling ⏲

Ah awesome, makes sense!