I have a flow set up to add rows to a table in a pbix report. I received an error for null values when adding rows. I attempted adding the following expression to account for nulls:
if(empty(triggerOutputs()?['ColumnName']),'',triggerOutputs()?['ColumnName'])
but I now get this error when triggering the flow:
The input body for trigger 'manual' of type 'Request' did not match its schema definition. Error details: 'Required properties are missing from object: entity.'.
Any insight as to the error and if my expression is incorrect?