Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
micimize authored Jun 17, 2020
2 parents c56578f + 19e758c commit f89498e
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

Expand Down
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

Expand Down
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/v4-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
name: v4 issue
about: An issue encountered with a v4 library
title: ''
labels: v4
assignees: micimize

---

**Describe the issue**
A clear and concise description of what the problem is.
* Was there a **regression**?


**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error


**Expected behavior**
A clear and concise description of what you expected to happen.


**device / execution context**
Are you on iOS, android, web, in a simulator, running from the terminal etc? This is especially important for `localhost` connection issues.

### Other useful/optional fields

Please fill or delete these sections if you don't fill them in

<details>
<summary>Stacktrace:</summary>

```dart
{my stacktrace here}
```

</details>


**screenshots**


**additional context**
What backend are you trying to use?


**additional notes**
Did you struggle to understand the docs or examples, or dislike the current api?


If you want to troubleshoot or discuss in real time, consider coming to the `support` channel in the [discord](https://discord.gg/tXTtBfC)
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

# GraphQL Flutter

## :mega: [`v4` is now in open alpha](https://github.com/zino-app/graphql-flutter/pull/648) :mega:


## About this project

GraphQL brings many benefits, both to the client: devices will need fewer requests, and therefore reduce data usage. And to the programmer: requests are arguable, they have the same structure as the request.
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ final QueryResult result = await _client.mutate(options);
if (result.hasException) {
print(result.exception.toString());
return
return;
}
final bool isStarred =
Expand Down

0 comments on commit f89498e

Please sign in to comment.