Please, I am at my wits end.
I need to iterate and have each individual bundle go to an http make a request node. But, so far i’m running into either my iterate node’s input is completely empty, OR my array bundles everything into one thing instead of the iterator looping over everything individually / I dont get multiple loops in the iterator, just 1.
Here is my json structure that I’m using
{
“operations”: [
{
“file_name”: “path/to/file”,
“action”: “CREATE”,
“content”: “GDScript code”
},
{
“file_name”: “path/to/another/file”,
“action”: “MODIFY”,
“content”: “GDScript code”
}
]
}
Anybody , please help. Its been weeks, I am stuck.