Hi all, I have a Power Automate flow that involves a Select block outputting a list JSON objects with key "N"! I would like to extract and concatenate the values of those objects into a single string. I process the output of the "Select" block with a "Compose" block within a "For each" that extracts the value.
The "Compose" works as expected! The issue is that I've added a "Join" block after the "For each" with input `@outputs('for-each')?['Compose']`, and testing it results in error:
"Unable to process template language expressions in action 'Join_1' inputs at line '0' and column '0': 'Required property 'from' expects a value but got null. Path ''.'."
Am I use the wrong input for the "Join" block"? Alternatively, is there an easier way I can extract and concatenate the results of a "Select" block?