I'm kind of new in PowerApp, and I've already create a power automate flow that ask for a parameter that works perfect in the flow process, it returns a list of data and it's what I want. Now I want to use the flow in my PowerApp application, which I've already added.
Screen - onVisible
Set(myData, 'MyFirstFlow'.Run("123"));
This flow on power automate with that parameter works fine, but in my powerApp application, I'm getting "false" when I want to check the data from "MyData".
ExpectResult: myData.id
ExpectResult: myData.description
Am I doing something wrond in the way that I'm recollecting the data from the flow in my app?