Hi, I am using a 'Get rows' action in my flow. All I am trying to do is get the count of the rows returned.
I have a 'Compose' action directly after that has the expression
length(body('Get_rows')?['value'])
This expression has been working for months and is all of a sudden failing. I am getting the error message:
The template language function 'length' expects its parameter to be an array or a string. The provided value is of type 'Null'.
I then tried changing the expression to be:
length(outputs('Get_rows')?['body/value']) but I am encountering the same issue.
Any ideas?