mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-31 23:47:28 -08:00
69 lines
1.2 KiB
Markdown
69 lines
1.2 KiB
Markdown
|
<div align="center">
|
||
|
<img width="464" height="106" src="../images/n8n-logo.png" alt="n8n">
|
||
|
<br>
|
||
|
<br>
|
||
|
<br>
|
||
|
</div>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
|
||
|
Awesome n8n workflows collection
|
||
|
================================
|
||
|
|
||
|
|
||
|
You will find here a collection of n8n worflow examples that can be easily imported in n8n.
|
||
|
|
||
|
|
||
|
## Contents
|
||
|
|
||
|
- [For loop](#for-loop) - how to iterate over an JSON array
|
||
|
- [Excel to Postgres](#excel-to-postgres) - how to migrate data from Excel to PostgreSQL
|
||
|
- [Postgres to Excel](#postgres-to-excel) - how to migrate data from Postgres to Excel
|
||
|
- [Update Postgres rows](#update-postgres-rows) - how to update PostreSQL rows
|
||
|
|
||
|
|
||
|
|
||
|
## For loop
|
||
|
|
||
|
![](for-loop.png)
|
||
|
|
||
|
1. Make an HTTP request that responds with a JSON array
|
||
|
1. For each item in the response array, make an HTTP request
|
||
|
|
||
|
[Download workflow](for-loop.json)
|
||
|
|
||
|
|
||
|
|
||
|
## Excel to Postgres
|
||
|
|
||
|
![](excel-to-postgres.png)
|
||
|
|
||
|
1. Read XLS from file
|
||
|
1. convert it to JSON
|
||
|
1. insert it in Postgres
|
||
|
|
||
|
[Download workflow](excel-to-postgres.json)
|
||
|
|
||
|
|
||
|
|
||
|
## Postgres to Excel
|
||
|
|
||
|
![](postgres-to-excel.png)
|
||
|
|
||
|
1. Read data from Postgres
|
||
|
1. Converting it to XLS
|
||
|
1. save it to disk
|
||
|
|
||
|
[Download workflow](postgres-to-excel.json)
|
||
|
|
||
|
|
||
|
|
||
|
## Update Postgres rows
|
||
|
|
||
|
![](update-postgres-rows.png)
|
||
|
|
||
|
- Simple update of data
|
||
|
|
||
|
[Download workflow](update-postgres-rows.json)
|