May 27 2022 12:31 PM
I have to fetch users from Azure AD particular group using @pnp/graph. But I got only 100 users from the group.
Below is my query to get a specific Azure AD group user,
const members = await graph.groups.getById("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX").members();
return members;
Can you have any idea how to get more than 100 users from the group using @pnp/graph?
Below is the reference link for the same,
https://pnp.github.io/pnpjs/graph/groups/#group-membership
Thanks