Hi All,
I have a Flow that I'm building for work where, given a list of people, it returns a list of timeslots where all of the specified people are free and then also returns a list of available Meeting Rooms (Locations) for those timeslots.
However, I'm finding that the array stored at:
body('Find_meeting_times')['MeetingTimeSuggestions']['Locations']
seems to max out at 5 items, no matter how many Locations are available (I have an "Apply To Each" looping through MeetingTimeSuggestions and a nested "Apply To Each" going through their Locations).
I've looked at one of my runs and confirmed that I'm not skipping anything in Locations; the resulting Output only contained 5 items, with the same 5 properties defined:
My Flow works GREAT except for that one little detail. Can anyone confirm/deny that behaviour? Is there a way to return more than 5 Locations?