Hi, OnSelect of a Button I have the next code
UpdateContext({locDocument:MyPowerAutomateFlow.Run()})
that code creates a context variable called locDocument it returns some properties from the flow like these
{
"name":"foo",
"id":"12234",
"base64":"SG9sYU11bmQ="
}
so I am able to use in my app like locDocument .base64 or locDocument .id and so on. but I need to add more properties to that object (locDocument )
{
"name":"foo",
"id":"12234",
"base64":"SG9sYU11bmQ=",
"extra1":1,
"extra2":"string"
}
those extra properties are not handle by the MS Flow.
What can I do? thanks