Bit new to the community so be gentle on me.
I'm having issue with a flow erroring. The flow is meant to be called by an agent - collect a date range and then lookup a Dataverse Table and return rows that match a query.
Flow initiated by agent/Agent Calls the flow
Input - StartDate - Text
Input EndDate - Text
Compose - StartDate DateOnly(Format Date for Dataverse Table Data Type)
Expression: formatDateTime(triggerBody()?['StartDate'], 'yyyy-MM-dd')
Compose - EndDate DateOnly(Format Date for Dataverse Table Data Type)
Expression: formatDateTime(triggerBody()?['EndDate'], 'yyyy-MM-dd')
Dataverse - List Rows
Table Name : Driver Deliver Reports
Select Columns: crb3e_connotenumber,crb3e_dateshort,crb3e_deliveredqty,crb3e_receiversignatory,crb3e_receiver,crb3e_suburb,crb3e_serv
Filter Rows:
crb3e_dateshort ge @{outputs('StartDate_DateOnly')}
and crb3e_dateshort le @{outputs('EndDate_DateOnly')}
and crb3e_deliveredqty eq 0
Filter Array
Input - Value - outputs('List Rows')?['body/value']
Edit in Advanced - contains(item()?['crb3e_receiversignatory'],'LPO/')
Error: Flow save failed with code 'WorkflowRunActionInputsInvalidProperty' and message 'The 'inputs' of workflow run action 'Filter_array' of type 'Query' is not valid. Property 'where' must be a template language expression.
Any feedback is appreciated, been stuck on tis for a while now.