When creating a site in SharePoint, I executed the GET "https://graph.microsoft.com/v1.0/sites/{site-id}/drives" API with a discrepancy between the default language and the display language selected.
As a result, it was confirmed that the document library name that should have been changed was inconsistent with the name property included in the response.
For example, if the default language of the site is set to English and the display language to Japanese, after changing the document library name and checking the Graph API response, it does not reflect the change. Then, when the display language is switched back to English, the document library name that should have been changed remains unchanged. If the document library name is changed again while keeping the display language in English, the Graph API response reflects the new name.
Therefore, I have two questions:
- Is it documented in the Graph API specifications that when the default language and display language of the site are different, the changed document library name does not reflect in the Graph API response? (Is it specified that changes are only reflected in the Graph API response when the default language and display language are the same?)
- Is there a way to reflect the changed document library name in the Graph API response when the default language and display language are different?