Hi - hoping that someone can help with the following:
I have an http request that returns more that 999 items:
https://graph.microsoft.com/v1.0/users?$select=displayName,id,officeLocation,assignedLicenses,licenseAssignmentStates&$top=999&$count=true&$filter=startswith(officeLocation,'TEST')
Ultimately, the data will be sent back to a canvas app as text using "Respond to a PowerApp or flow".
I have read and testing combining the 2 replies using pagination information, selecting the specific information that I need, and looping through the results adding each to an array. The concern, as I have also seen others mention, is that appending to array can take a considerable amount of time. In my case, ~ 2 minutes for each 999 records. [I already set the speed option to 50]
Questions:
Is there a fast way to combine 2 or more HTTP responses without appending to array
Is there a way to get more than 1000 records for the http request mentioned above? In my case, I am using just a free Http connector