We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286f486 commit 120f28bCopy full SHA for 120f28b
app/services/msgraph/index.ts
@@ -65,7 +65,7 @@ export async function listUsersByEmail(email: string) {
65
const orderby = '$orderby=userPrincipalName';
66
const count = '$count=true';
67
const top = '$top=25';
68
- const query = [filter, orderby, count, top].join('&');
+ const query = [filter, userSelect, orderby, count, top].join('&');
69
70
const url = `${M365_URL}/v1.0/users?${query}`;
71
const res = await sendRequest(url);
0 commit comments