robwindsor.hashnode.devUpdating SharePoint Lookup Field Values with Microsoft GraphIn this post we’ll examine how to set or update SharePoint lookup field values using Microsoft Graph. The target of the lookups will be a list named Colors with three items: Red, Green, and Blue. These items have list item ids of 1, 2, and 3 consecut...Jan 31·2 min read
robwindsor.hashnode.devAccess a SharePoint site by server-relative URL with Microsoft GraphYou have a couple options when accessing SharePoint sites with Microsoft Graph, using the site Id and using the server-relative URL. The documentation alludes to the use of the server-relative URL, but it focusses more on the use of the site Id. I wa...Nov 28, 2022·2 min read
robwindsor.hashnode.devAccessing SharePoint Lookup Field Values with Microsoft GraphLet's say I have an Orders list that has a lookup on a Customers list. The name of the lookup field is Customer and the target of the lookup is the Title field which stores the customer code. Now I want to get data from the Orders list using Micros...Nov 21, 2022·2 min read
robwindsor.hashnode.devRegistering SharePoint Framework list form customizers with CSOM and PowerShellAfter you deploy a SharePoint list form customizer extension to SharePoint, you need to register it to be used for the New, Edit, and/or Display forms of a list or site content type. To do this, you'll need the component id for the list form customiz...Oct 6, 2022·2 min read