I have a flow i want to implement in topics with a filter array action and up until this action the rest are okay. The filter array action is getting input but not giving output at all thus my problem starts from there.
The filter query i've given is as follows:
@or(
equals(item()?['JournalNo'], triggerOutputs()?['body/UserInput']),
equals(item()?['Id'], triggerOutputs()?['body/UserInput']),
equals(item()?['TAId'], triggerOutputs()?['body/UserInput']),
equals(item()?['SystemCode'], triggerOutputs()?['body/UserInput'])
)
Unfortunately chatgpt is taking me in circles but the goal of this flow is:
The agent:
Accept user input: either JournalNo, TAId, Id, or SystemCode.
Use an Excel file (in SharePoint) to map between these fields.
Find the folder named using either Id/TAId/SystemCode related to the user's input in a fixed SharePoint path
Return all documents inside the matching folder.
Provide a summary for each document along with a direct clickable link.
someone please kindly help.