I have been using Flow to populate data from Forms into Power BI. It works great for my standard Form templates, but I have a new Form template that uses branching. This branching has caused Flow to fail because it registers a null response from Forms.
I'm using the following Flow expression to get the response details from Forms:
first(triggerBody()?['value'])?['resourceData']?['responseId']
I have no idea what this expression means as I copied it from a tutorial I watched to get Flow working. The error message I'm getting says the following:
Unable to process template language expressions in action 'Get_response_details' inputs at line '1' and column '2005': 'The template language function 'first' expects its parameter be an array or a string. The provided value is of type 'Null'.
Any help would be appreciated.