@Jarryd_Williams Sometimes this aggregator can be pretty buggy, I believe Make is aware of the issue and would solve it (soon hopefully).
I just now also had an aggregator which didn’t show me the values again.
How you can solve this (pretty techy):
- Within the aggregator, add any of the values from the module you would like to map. (So if from module 23 you want to map “thumbnails” but this doesn’t show, add something else from module 23.
- Now save the scenario, and download the blueprint
- Open the blueprint JSON in some kind of file editor like notepad++ (windows) or brackets (mac)
- Now manually add the variable you would like to add in the mapping of the aggregator. This would look like the following:
Before edit:
{
"id": 43,
"module": "builtin:BasicAggregator",
"version": 1,
"parameters": {
"feeder": 22
},
"mapper": {
"__IMTINDEX__": "{{22.`__IMTINDEX__`}}",
},
"metadata": {
"designer": {
"x": 1800,
"y": 450
},
"restore": {
"feeder": {
"label": "Iterator [22]"
},
"target": {
"label": "Custom"
},
"mapper": {
"label": [
null
]
}
}
}
},
After the edit, adding my variable I want:
{
"id": 43,
"module": "builtin:BasicAggregator",
"version": 1,
"parameters": {
"feeder": 22
},
"mapper": {
"__IMTINDEX__": "{{22.`__IMTINDEX__`}}",
"BankEntryLineDate": "{{22.BankEntryLines.results[1].Date}}"
},
"metadata": {
"designer": {
"x": 1800,
"y": 450
},
"restore": {
"feeder": {
"label": "Iterator [22]"
},
"target": {
"label": "Custom"
},
"mapper": {
"label": [
null
]
}
}
}
},
You can see I added the item BankEntryLines.
5. Now you can remove the other value you don’t want in the mapping. Such as this IMTINDEX.
6. Save the JSON and upload this into your scenario as blueprint.
This trick however does not allow you to actually see the value in the GUI. So you would see the data in the output of the aggregator, but it will still not be visible in the interface of the aggregator mapping.
Changing this value within the UI of Make would overwrite the manual data you inputted in the JSON.
It is a pretty hacky approach to fix this, but I hope this helps you.
If you have any other questions please feel free to comment them below.