- Microsoft Graph is a RESTful web API that enables you to access Microsoft Cloud service resources. After you register your app and get authentication tokens for a user or service, you can make requests to the Microsoft Graph API.
- To read from or write to a resource such as a user or an email message, you construct a request that looks like the following:
HTTP
Copy {HTTP method} https://graph.microsoft.com/{version}/{resource}?{query-parameters} The components of a request include:
{HTTP method} - The HTTP method used on the request to Microsoft Graph. {version} - The version of the Microsoft Graph API your application is using. {resource} - The resource in Microsoft Graph that you’re referencing. {query-parameters} - Optional OData query options or REST method
Links
- https://learn.microsoft.com/en-us/graph/use-the-api
- GraphQL with Azure, https://learn.microsoft.com/en-us/azure/developer/javascript/how-to/with-web-app/graphql/static-web-app-graphql/graphql-basics
- Synthetic GraphQL is much easier to deal with, https://www.aaron-powell.com/posts/2022-08-16-graphql-on-azure-part-9-rest-to-graphql/