From 11e083cce45710784251be78ec0ca5329c44495e Mon Sep 17 00:00:00 2001 From: Jan Ackermann Date: Wed, 29 Nov 2023 15:41:31 +0100 Subject: [PATCH] Don't fetch group membership while listing users --- packages/web-client/src/graph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-client/src/graph.ts b/packages/web-client/src/graph.ts index 9cc7046a781..27c8591bcc0 100644 --- a/packages/web-client/src/graph.ts +++ b/packages/web-client/src/graph.ts @@ -150,7 +150,7 @@ export const graph = (baseURI: string, axiosClient: AxiosInstance): Graph => { filter, new Set([orderBy]), new Set([]), - new Set(['memberOf', 'appRoleAssignments']) + new Set(['appRoleAssignments']) ), createUserAppRoleAssignment: (userId: string, appRoleAssignment: AppRoleAssignment) => userAppRoleAssignmentApiFactory.userCreateAppRoleAssignments(userId, appRoleAssignment),