Merge pull request #15891 from afscrome/improvemsgraphperf

Improve MS Graph Performance
This commit is contained in:
Fredrik Adelöw
2023-02-03 13:24:11 +01:00
committed by GitHub
7 changed files with 246 additions and 192 deletions
+8
View File
@@ -0,0 +1,8 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': minor
---
Improve performance when loading users via group membership.
Users data is now loaded from a paged query, rather than having to make an extra call per user to load each user's profiles.
Note, there are still additional per user calls made to load user avatars
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Increased default page size to 999 (from 100) to reduce the number of calls made to the Microsoft Graph API.