Skip to content

Commit 120f28b

Browse files
committed
chore(feat/3669): revert back the query select
1 parent 286f486 commit 120f28b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/services/msgraph/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function listUsersByEmail(email: string) {
6565
const orderby = '$orderby=userPrincipalName';
6666
const count = '$count=true';
6767
const top = '$top=25';
68-
const query = [filter, orderby, count, top].join('&');
68+
const query = [filter, userSelect, orderby, count, top].join('&');
6969

7070
const url = `${M365_URL}/v1.0/users?${query}`;
7171
const res = await sendRequest(url);

0 commit comments

Comments
 (0)