Hi everyone,
I’m having an issue in my Make scenario. The google-sheets:watchRows
module successfully retrieves data from my Google Sheets (see logs below), but the builtin:BasicFeeder
module doesn’t receive it. I’ve tried mapping {{1.rows}}
and {{1}}
, but nothing works.
Logs from google-sheets:watchRows
:
[
{ "0": "02/01/2025 14:48:59", "1": "2025-2026", "2": "gilles.bouchonneau@gmail.com", ... },
{ "0": "02/01/2025 21:07:45", "1": "2024-2025", "2": "gilles.bouchonneau@gmail.com", ... }
]
Issue:
The mapping array: {{1.rows}}
or array: {{1}}
doesn’t pass the data to builtin:BasicFeeder
. The iterator logs show an empty array.
Questions:
- How can I properly map the data between these modules?
- Should I use an intermediate module to reformat the data?
Thanks for your help!
Gilles