I'm attempting to pass two Collections to Flow on a button press. I'm collecting People (using the OOTB People screen) and Office 365 Groups. On the first screen, the user searches for one or more people, and on the second screen, the user selects one or more Groups on a List screen.
In the App.OnStart, I create the following Collection:
Collect(MyGroups, Office365Groups.ListOwnedGroupsV2().value)
I have two issues:
First is for the List screen -- how can I collect the Groups that have checkboxes next to their entry?
Second is, how do I pass both Collections (MyPeople and a new Collection based on selected Groups) to Flow? The idea here is to do a foreach on the new selected Groups collection and pass the MyPeople collection to each Group.