mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
1.2 KiB
1.2 KiB
Awesome n8n workflows collection
You will find here a collection of n8n worflow examples that can be easily imported in n8n.
Contents
- For loop - how to iterate over an JSON array
- Excel to Postgres - how to migrate data from Excel to PostgreSQL
- Postgres to Excel - how to migrate data from Postgres to Excel
- Update Postgres rows - how to update PostreSQL rows
For loop
- Make an HTTP request that responds with a JSON array
- For each item in the response array, make an HTTP request
Excel to Postgres
- Read XLS from file
- convert it to JSON
- insert it in Postgres
Postgres to Excel
- Read data from Postgres
- Converting it to XLS
- save it to disk
Update Postgres rows
- Simple update of data