Forum Discussion
Tarang_7
Nov 04, 2025Copper Contributor
Sharepoint Webpart Discussion
I make a webpart using react language in that webpart I have create a form in that I have a dropdown in that I want to display all users of my community but currently only site users are displayed ...
DavidJacob
Nov 05, 2025Brass Contributor
Use the Microsoft Graph API with the `User.Read.All` permission.
const userResults = await graphClient.api('/users').get();
This will get all tenant users, not just the site users.