-
-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 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,8 +1,32 @@ | ||
## [0.1.0] - June 15 2018. | ||
## [0.1.0] - June 15 2018 | ||
|
||
My collegue and I created a sipmple implementation of a GraphQL Client for Flutter. (Many thanks to Eus Dima, for his work on the innitial client.) | ||
My colleague and I created a simple implementation of a GraphQL Client for Flutter. (Many thanks to Eus Dima, for his work on the initial client.) | ||
|
||
### Breaking change | ||
|
||
n/a | ||
|
||
#### Fixes / Enhancements | ||
|
||
- A client to connect to your GraphQL server. | ||
- A query widget to handle GraphQL queries. | ||
- A mutation widget to handle GraphQL mutations. | ||
- Simple support for query polling. | ||
|
||
#### Docs | ||
|
||
- Initial documentation. | ||
|
||
## [0.2.0] - June 15 2018 | ||
|
||
### Breaking change | ||
|
||
- Changed query widget `polling` argument to `pollInterval`, following the [react-apollo](https://github.com/apollographql/react-apollo) api. | ||
|
||
#### Fixes / Enhancements | ||
|
||
- Query polling is now optional. | ||
|
||
#### Docs | ||
|
||
- Updated the docs with the changes in api. |
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,6 +1,6 @@ | ||
name: graphql_flutter | ||
description: A GraphQL client for Flutter. | ||
version: 0.1.0 | ||
version: 0.2.0 | ||
authors: | ||
- Eus Dima <[email protected]> | ||
- Zino Hofmann <[email protected]> | ||
|