Is there a node to save the last execution so i can reference it later?

I’m using the calendly node, the issue is that I have to create a test event everytime i want to check anything.

When i adjust something in the workflow, it would be really handy to have previous execution data available to use.

I assume there must be a node i can use to collect and save all executions, was hoping to get the quick answer here?

FYI im a sales guy not a developer so hopefully the solution is not crazy complex

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@Keith_Harrison , I don’t think there is a dedicated node for this purpose. However, the solution does exist but would require a bit of coding (not “crazy complex”). What you need is so-called Static Data leveraged by Code node.

Some examples of its usage could be found on this forum, for example,

2 Likes

Thanks @ihortom, will review and hopefully figure it out

like @ihortom said the static data is a solution without any external tools needed.

Another option would be to get something like airtable or baserow to store the data and keep overwriting the same record so you always only store the latest data and then you can easily retrieve that when needed.
This might be an easier option to get working for you, also a tool like that is nice to have for other usecases.

1 Like

Finally solved… Why doesn’t anyone know about this, I found it myself by accident!!

  1. Take data from a previous execution

  2. Set that data as “mock Data” in the node you want to test
    That’s it!!!

  3. Pin the data for future use if you want…

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.