Simplifies MSGraph usage for SPFx
npm install msgraph-helpertypescript
import MSGraph from 'msgraph-helper';
`
In your main webpart or extension in the onInit function, add the following:
`typescript
await MSGraph.Init(this.context.msGraphClientFactory, 'v1.0');
`
Anywhere in your soluton you can now do:
`typescript
import MSGraph from 'msgraph-helper';
let memberOf = await MSGraph.Get('/me/memberOf');
`
The helper supports Get, Patch, Put and Delete`.