msgraph-sdk-javascript
msgraph-sdk-javascript copied to clipboard
Update `.api()` signature to align with Kiota request executor styles.
Currently:
client.api().headers().select().get();
New style;
const queryOptions = {
select : "id"
};
const headers = {
key: value
};
`client.api().get(queryOptions, headers )`