I have a Power Automate Flow that returns the following json:
[{'Item':'Document.docx'},{'Item':'Document1.docx'}]
In PowerApps I am trying to convert it to a collection.
Set(SearchRslts, PowerApp.Run());
ClearCollect(TestColl, SearchRslts.searchlist);
I then look at the TestColl and it just has one element, instead of two. Any idea on what is wrong here?