Is there a limit to the number of "members" I can return, or something I need to specify to get all users from a group?
Scenario:
I want a drop down menu with a list of all users in my organization, sorted alphabetically
Solution:
ClearCollect(Everyone,SortByColumns(Office365Groups.ListGroupMembers("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx").value,"displayName"))
Problem:
The above action works perfectly except for the fact that it's missing at least 4-5 people that I know of. There a little over 200 members in this group, and when I look at the group membership in azure portal, that same group id, has those missing 4-5 users as expected. Is there a paging or some other step I need to take to return the full list? To save on space, I don't have a separate search gallery or anything where they can type a name.