adding the workflow collection to git

This commit is contained in:
Eliad Shahar
2025-05-14 11:58:29 +03:00
parent 05c94a30d5
commit 84c802cb50
2050 changed files with 984481 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
{
"nodes": [
{
"name": "Mock Data",
"type": "n8n-nodes-base.function",
"position": [
802,
307
],
"parameters": {
"functionCode": "return [\n {\n json: {\n id: 1,\n name: \"Jim\"\n }\n },\n {\n json: {\n id: 2,\n name: \"Stefan\"\n }\n },\n {\n json: {\n id: 3,\n name: \"Hans\"\n }\n }\n];"
},
"typeVersion": 1
},
{
"name": "Create an array of objects",
"type": "n8n-nodes-base.function",
"position": [
1052,
307
],
"parameters": {
"functionCode": "return [\n {\n json: {\n data_object: items.map(item => item.json),\n },\n }\n];\n"
},
"typeVersion": 1
}
],
"connections": {
"Mock Data": {
"main": [
[
{
"node": "Create an array of objects",
"type": "main",
"index": 0
}
]
]
}
}
}