Skip to content

Commit 12563ca

Browse files
author
Mike Solomon
authored
Merge pull request #3 from rowtype-yoga/ps15
Updates to PureScript 15
2 parents b83fcc1 + 04072f0 commit 12563ca

10 files changed

+3481
-612
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.spago/
2+
output/
3+
node_modules/
4+
.psc-ide-port

.psc-ide-port

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
15802

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Type-safe graphql queries using functional dependencies.
44

55
Use the `GraphQLReqRes` class to define expected input and output.
6-
Then, create a `client` and use it to interact with your API.
6+
Then, create a `client` and use it to interact with your API.
77

88
```purescript
99
endpoint = "https://api.react-finland.fi/graphql" :: String
@@ -44,7 +44,7 @@ instance graphqlReactFinlandConference ::
4444
)
4545
4646
client :: GraphQLClient
47-
client = graphQL "https://api.react-finland.fi/graphql" []
47+
client = graphQL "https://api.react-finland.fi/graphql" [] driver
4848
4949
main ∷ Effect Unit
5050
main =
@@ -56,4 +56,4 @@ main =
5656
Log.info $ show speakers
5757
```
5858

59-
You can check out the [test](./test/Main.purs) for a full example.
59+
You can check out the [test](./test/Main.purs) for a full example.

0 commit comments

Comments
 (0)