GoodToCode Stack is a collection of common domain entities written in dotNet Core with Gherkin Specflow tests. Focused on DDD, CQRS, Microservices, Serverless and guided by the SOLID principle.
Make MS graph main datasource for profile data at initial add
Get claims of profile
Sync to local database
Updating local database with changes in the Microsoft Graph user profile data
Use the delta query feature of Microsoft Graph API. This feature allows you to retrieve only the changes made since the last time you queried the data. You can use this feature to keep your local database in sync with the Microsoft Graph user profile data.
https://docs.microsoft.com/en-us/graph/delta-query-overview?view=graph-rest-1.0
Make MS graph main datasource for profile data at initial add Get claims of profile Sync to local database
Updating local database with changes in the Microsoft Graph user profile data
Use the delta query feature of Microsoft Graph API. This feature allows you to retrieve only the changes made since the last time you queried the data. You can use this feature to keep your local database in sync with the Microsoft Graph user profile data. https://docs.microsoft.com/en-us/graph/delta-query-overview?view=graph-rest-1.0
Use webhooks to receive notifications when changes are made to the Microsoft Graph user profile data. This way, you can update your local database in real-time. https://docs.microsoft.com/en-us/graph/webhooks-overview?view=graph-rest-1.0