Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Here are some ways you can contribute to this documentation:
- To make small changes to an article, [Contribute using GitHub](#contribute-using-github).
- To make large changes, or changes that involve code, [Contribute using Git](#contribute-using-git).
- Report documentation bugs via GitHub Issues
- Request new documentation at the [Office Developer Platform UserVoice](http://officespdev.uservoice.com) site.
- Request new documentation or report documentation issues via [GitHub Issues](https://github.com/microsoftgraph/msgraph-sdk-javascript/issues) in this repository.

## Contribute using GitHub

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ The Microsoft Graph client is designed to make it simple to make calls to Micros

For information on how to create a client instance, see [Creating Client Instance](./docs/CreatingClientInstance.md)

> **Note:** Authentication provider samples in the README and docs are illustrative. They show how to wire an `AuthenticationProvider` into the client; they are not production-ready credential handling. For unit tests and mocking, see [`test/DummyAuthenticationProvider.ts`](./test/DummyAuthenticationProvider.ts) and the helpers under [`test/`](./test/).


### 3. Make requests to the graph

Once you have authentication setup and an instance of Client, you can begin to make calls to the service. All requests should start with `client.api(path)` and end with an [action](./docs/Actions.md).
Expand Down
2 changes: 1 addition & 1 deletion src/GraphRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ export class GraphRequest {

/**
* @public
* Sets the api endpoint version for a request
* Sets the response type for a request
* @param {ResponseType} responseType - The response type value
* @returns The same GraphRequest instance that is being called with
*/
Expand Down