Hi Paulie,
I am having the same issue where the form logic can be skipped based on questions and it's causing my error.
"The 'from' property value in the 'select' action inputs is of type 'Null'. The value must be an array."
Where do I key this into my flow?
if(equals(outputs('somearray'), null), json('[]'), outputs('somearray'))Currently this is mine:
json(outputs('Get_response_details')?['body/re166e862ac2e43b5a854017b21fe7637'])
Tried this and it still failed:
if(equals(outputs('Get_response_details'), null), json('[]'), outputs('Get_response_details')?['body/re166e862ac2e43b5a854017b21fe7637'])