Skip to content

Commit cc43254

Browse files
committed
update readme
1 parent 4ca0498 commit cc43254

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,27 @@ loginMutation =
152152
There are a lot of things that this package can't do right now, but might do in the future. What gets done depends on how the package ends up being used, and how much demand there is for each feature. Here are some likely possibilities:
153153

154154
* support for [subscriptions](https://dev-blog.apollodata.com/graphql-subscriptions-in-apollo-client-9a2457f015fb)
155-
* generating code from a GraphQL schema to help build valid queries
155+
* generating code from a GraphQL schemas and queries
156156
* providing functions to validate a query against a target schema
157157
* leveraging Relay-compliant schemas to cache response data and transform queries so that the client only asks the server for what it doesn't have already
158158
* providing an interface to implement a GraphQL schema that you can run queries against
159+
160+
### Getting and giving help
161+
162+
If you're having trouble figuring out how to do something with this package, check out the [#graphql channel](https://elmlang.slack.com/messages/C0RSQNQ92) on the [Elm Slack](http://elmlang.herokuapp.com/) — there are usually people there who can help. And if you can be one of those people who help other people, then thank you!
163+
164+
### Running the tests
165+
166+
Install the `elm-test` npm package globally:
167+
168+
```
169+
npm install -g elm-test
170+
```
171+
172+
Make sure you have the latest version of `elm-test`, otherwise it may not be able to find the the test files in the right way. You can update an older version with `npm update -g elm-test`.
173+
174+
Now run `elm-test` in the root folder of this project:
175+
176+
```
177+
elm-test
178+
```

0 commit comments

Comments
 (0)