Skip to content

Commit

Permalink
Merge pull request #3686 from bcgov/feat/3669
Browse files Browse the repository at this point in the history
chore(feat/3669): revert back the query select
  • Loading branch information
junminahn authored Sep 5, 2024
2 parents ddf85c5 + 120f28b commit 9bdd591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/msgraph/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function listUsersByEmail(email: string) {
const orderby = '$orderby=userPrincipalName';
const count = '$count=true';
const top = '$top=25';
const query = [filter, orderby, count, top].join('&');
const query = [filter, userSelect, orderby, count, top].join('&');

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

0 comments on commit 9bdd591

Please sign in to comment.