I want to know how I can pass those 5 bundles that contain 10 values to 10 records in a google sheet
You’ll need to use a second Iterator to “split” the value of the first Iterator.
Module Export
You can copy and paste this module export into your scenario. This will paste the modules shown in my screenshots above.
-
Copy the JSON code below by clicking the copy button when you mouseover the top-right of the code block
-
Enter your scenario editor. Press ESC to close any dialogs. Press CTRLV (paste keyboard shortcut for Windows) to paste directly in the canvas.
-
Click on each imported module and save it for validation. You may be prompted to remap some variables and connections.
Click to Expand Module Export Code
JSON - Copy and Paste this directly in the scenario editor
{
"subflows": [
{
"flow": [
{
"id": 4,
"module": "builtin:BasicFeeder",
"version": 1,
"parameters": {},
"mapper": {
"array": "{{split(10.value; newline)}}"
},
"metadata": {
"designer": {
"x": 505,
"y": 197,
"messages": [
{
"category": "last",
"severity": "warning",
"message": "A transformer should not be the last module in the route."
},
{
"category": "reference",
"severity": "error",
"message": "Module references non-existing module '10'."
}
]
},
"restore": {
"expect": {
"array": {
"mode": "edit"
}
}
},
"expect": [
{
"name": "array",
"type": "array",
"label": "Array",
"mode": "edit",
"spec": []
}
]
}
}
]
}
],
"metadata": {
"version": 1
}
}
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
Please provide the screenshot of your module’s settings as well.
samliew – request private consultation
Join the unofficial Make Discord server to chat with us!
blueprint (34).json (75.4 KB)
This doesn’t look right.
You should just iterate the reviews array
Then you’ll have 10 bundles
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
Yeah but I need to map those too
Then just iterate the whole reviews array and you’ll get each review in it’s own bundle.
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
And then what do I have to do because it would give me a value, with many bundles and then I would have to map them again and obtain the 10 values of each array
Put the Rating array variable in an Iterator module.
Map the value of that iterator in your create record module.