I am trying to create a JSON array for our web app from a MSSQL database. For this I use the following components:
telekom/webhook:receive
telekom/mssql:selectAction
select * from [dbo].[perso]
telekom/request-reply:reply
{
"personalnr": personalnr,
"firstname": firstname,
"name": name,
"email": email,
"holidays": holidays
}
You can see in the dashboard that all 20 data records are read in and that they also arrive at telekom/request-reply
. But as output I only get the first record back.