Hi guys, I’m having a problem and would like to understand it better, I have a birthday flow that I’ve already discussed in other topics, but it doesn’t work autonomously, I found that it’s due to the first node that changes the output and causes the error.
When I do the “test” I force the Schedule trigger output to be a Json with the following data:
[
{
“name”: “Pedro”,
“date”: “08/12”,
},
{
“name”: “Flávia”,
“date”: “12/12”,
},
{
“name”: “Ederson”,
“date”: “16/12”,
}
]
Can anyone explain to me better what is happening and how to fix it?
I’m using the cloud
In this first print (which is also the first step) I force the “output”, in test mode when I click on “execute workflow” it works exactly with this output
In the second, this is where I validate the other steps.
The problem is, when I “execute” only the first step, the output changes as shown below, which means nothing else works. Is there any way to pass this output or fix this data somewhere within n8n? without me needing to make a query or something like that in an api?
and when removing from the array it gives me a syntax error.
here is my json:
[
{
“name”: “Angelo”,
“date”: “29/06”,
“description”: “mestre do copilot,gênio do geogussr, inimigo da Steam”,
},
{
“name”: “Lucas”,
“date”: “08/03”,
“description”: “Alto, parece um poste (é o que dizem), Velho, precisa de calcitran B12, Gamer nas horas vagas, Nerd”,
},
{
“name”: “Nadai”,
“date”: “05/01”,
“description”: “Youtuber,Careca,Rei do drift”,
}
]