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.
2 parents ddf85c5 + 120f28b commit 9bdd591Copy full SHA for 9bdd591
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