# React sample showing the use of PnPJS with MS Graph ## Summary This webpart demonstrates how to use [PnPJS](https://pnp.github.io/pnpjs/) with SharePoint Framework and how to query [Microsoft Graph](https://docs.microsoft.com/en-us/graph/overview) with PnPJS. It requests a list of Azure AD [groups](https://docs.microsoft.com/en-us/graph/api/group-list?view=graph-rest-1.0) at your tenant and shows them using [Office UI Fabric React](https://developer.microsoft.com/en-us/fabric#/components) list. ![Main UI](./assets/summary.png) ## Used SharePoint Framework Version ![drop](https://img.shields.io/badge/drop-1.7.1-green.svg) ## Applies to * [SharePoint Framework](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview) * [Office 365 developer tenant](http://dev.office.com/sharepoint/docs/spfx/set-up-your-developer-tenant) ## Solution Solution|Author(s) --------|--------- react-graph-pnpjs | Sergei Sergeev ([@sergeev_srg](https://twitter.com/sergeev_srg), [spblog.net](https://spblog.net/)) ## Version history Version|Date|Comments -------|----|-------- 1.0|Jan 09, 2019|Initial release ## Disclaimer **THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.** --- ## Minimal Path to Awesome - clone this repo - navigate to the folder with current sample - restore dependencies: `$ npm i` - bundle solution: `$ gulp bundle --ship` - package solution: `$ gulp package-solution --ship` - locate solution at `./sharepoint/solution/pn-p-graph-web-part.sppkg` and upload it to your tenant app catalog - you will see a message saying that solution has pending permissions which need to be approved: ![Pending permission requests](./assets/approve.png) - you should approve permission requests from your SharePoint Framework web part. There are [different options available](https://docs.microsoft.com/en-us/sharepoint/dev/spfx/use-aadhttpclient#manage-permission-requests) - new SharePoint Admin UI, PowerShell, [`$o365`](https://pnp.github.io/office365-cli/) cli. For the matter of this sample, the fastest way to do it is through new SharePoint Admin UI. Open Web API permission management page by navigating to the url `https://-admin.sharepoint.com/_layouts/15/online/AdminHome.aspx#/webApiPermissionManagement` (changing `` to your real organization name) or by going to the new Admin UI directly from old SharePoint Admin Center. Select Pending `Group.Read.All` request and approve it: ![Approve request from new Admin UI](./assets/approve-request.png) - run `$ gulp serve` and open hosted workbench, i.e. `https://.sharepoint.com/sites//_layouts/15/workbench.aspx` - add `PnPGraph` web part to see it in action ## Features Web part in this solution illustrates the following concepts on top of the SharePoint Framework: - showcases PnPJS configuration inside SharePoint Framework - showcases how to use MS Graph with PnPJS - showcases how to correctly configure SharePoint Framework solution and tenant to allow PnPJS to call MS Graph