Skip to main content

Open Graph Extensions with SPFx

Following on from my previous post titled “Using Microsoft Graph Open Extensions with PowerApps” I challenged myself to recreate the same example using a SPFx web part. To read more about what Open Graph Extensions are please read the previous post.

How did the experience compare?

Although creating a SPFx web part is markedly different and requires coding skills compared to a low code solution such as PowerApps, there are some benefits;

·       You don’t need to create a Azure App Registration

·       You don’t need to create Custom Connectors

·       You don’t need a premium PowerApps Licence

You can view the full solution via the link below, but here are the most important elements of the web part;

Graph Scopes

The following graph permissions are required and will need to be approved in the API Permissions;

·       User.Read

·       User.ReadWrite

Graph Calls

The web part makes the following four Graph calls;

Create

Creates an Open Graph Extension named “com.bestranet.roamingSettings” with a property named “plane”.

Verb

POST

Endpoint

/v1.0/me/extensions

Body

{

  "@odata.type": "#microsoft.graph.openTypeExtension",

  "extensionName": "com.bestranet.roamingSettings",

  "plane": "Concorde"

};

 

Read

Retrieves an Open Graph Extension named “com.bestranet.roamingSettings”

Verb

GET

Endpoint

/v1.0/me/extensions/com.bestranet.roamingSettings

Body

n/a

 

Update

Updates an Open Graph Extension named “com.bestranet.roamingSettings”

Verb

PATCH

Endpoint

/v1.0/me/extensions/com.bestranet.roamingSettings

Body

{

  "@odata.type": "#microsoft.graph.openTypeExtension",

  "extensionName": "com.bestranet.roamingSettings",

  "plane": "Concorde"

};

 

Delete

Deletes an Open Graph Extension named “com.bestranet.roamingSettings”

Verb

DELETE

Endpoint

/v1.0/me/extensions/com.bestranet.roamingSettings

Body

n/a

The full solution can be found here

Comments

Popular posts from this blog

Replace Power Automate Approval Emails with Adaptive Cards in Microsoft Teams

Microsoft recently released a personal app for Approvals within Teams. Please review this before investing time implementing something customized. If you are still interested in creating a custom adaptive card for an approval process check out the following blog for which this blog is a good precursor. With Microsoft Teams becoming an increasingly dominant force in collaboration, and one objective being the reduction of email, this blog covers how you can simply replace approval email notifications with dynamic adaptive cards in Teams. So, how does it work? I have created a sample SharePoint list using the “ Travel requests ” template and associated it with my Team as shown below. Within Microsoft Power Automate I have created an “ Automated cloud flow ” using the “ When an item is created ” trigger. The next step is to add the “ Create an approval ” action. I have personally configured this action as follows. Notice how I have set the “ Enable notifications ” to “ No ”. This wil

Customize list forms in SharePoint with JSON formatters

Back in the days of classic SharePoint we had a few options to customize list forms, such as JSLink. Up until recently our options to customize list forms in modern SharePoint were somewhat limited. Sure, we could use JSON to apply custom formatting to views and columns, but unless we leveraged tools, such as PowerApps or SPFx Application Customizers, it was impossible to style list forms. Microsoft has recently introduced JSON formatters for list forms and I think they are great, especially for requirements where a simple header or footer change may be required. In this blog we will cover what JSON formatters are, how we can leverage them and some useful examples to support our understanding. What are JSON formatters? When Microsoft introduced the modern version of SharePoint, capabilities like JSLink were no longer compatible and became obsolete. JSLink was useful because it allowed us to customize list views, forms and columns, and for some time there was a void until Micros

Using Microsoft Graph Open Extensions with PowerApps

This blog will cover how to create a lightweight application that will Create, Read, Update and Delete user profile data in Microsoft Graph by extending the “user” resource. Firstly, let us cover what exactly Graph Extensions are. Graph Extensions allow us to extend several graph resources, such as “user” and “message”, to capture additional data that we may need for our own application, without having to rely on an external data source. One benefit of using Graph Extensions over methods such as local storage is the roaming capability. Also, because the application properties are stored in the Graph, they can be leveraged across the whole Microsoft 365 platform. Because I am an aviation geek we will use “favorite aircraft” as an example scenario. Here is the high-level objective. A user can create, read, update and delete a property named “plane” The selection is saved as an extended property in the Microsoft Graph. Getting started Because we are interacting with the Mi