-
Notifications
You must be signed in to change notification settings - Fork 730
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update version number for release * Updated changelog for release * Update documentation for release changes * Update changelog for #2015
- Loading branch information
1 parent
46957a3
commit d93568f
Showing
7 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
CURRENT_PROJECT_VERSION = 0.49.1 | ||
CURRENT_PROJECT_VERSION = 0.50.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
docs/source/api/ApolloCodegenLib/enums/DownloadMethod.HTTPMethod.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
**ENUM** | ||
|
||
# `DownloadMethod.HTTPMethod` | ||
|
||
```swift | ||
public enum HTTPMethod: Equatable, CustomStringConvertible | ||
``` | ||
|
||
The HTTP request method. This is an option on Introspection schema downloads only. Apollo Registry downloads are always | ||
POST requests. | ||
|
||
## Cases | ||
### `POST` | ||
|
||
```swift | ||
case POST | ||
``` | ||
|
||
Use POST for HTTP requests. This is the default for GraphQL. | ||
|
||
### `GET(queryParameterName:)` | ||
|
||
```swift | ||
case GET(queryParameterName: String) | ||
``` | ||
|
||
Use GET for HTTP requests with the GraphQL query being sent in the query string parameter named in | ||
`queryParameterName`. | ||
|
||
## Properties | ||
### `description` | ||
|
||
```swift | ||
public var description: String | ||
``` |