Skip to content

Commit c8d94ea

Browse files
committed
new binding api
1 parent 6d16965 commit c8d94ea

File tree

7 files changed

+320
-89
lines changed

7 files changed

+320
-89
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ const resolvers = {
3131
hello: (parent, { name }) => `Hello ${name || 'World'}!`,
3232
favoriteRepos: (parent, args, context, info) => {
3333
return Promise.all(
34-
favoriteRepos.map(args =>
35-
github.delegate('query', 'repository', args, context, info),
36-
),
34+
favoriteRepos.map(args => github.query.repository(args, info)),
3735
)
3836
},
3937
},
@@ -51,4 +49,4 @@ Simply follow [this guide](https://developer.github.com/v4/guides/forming-calls/
5149

5250
## Resources
5351

54-
- Github GraphQL Explorer: https://developer.github.com/v4/explorer/
52+
* Github GraphQL Explorer: https://developer.github.com/v4/explorer/

example/package.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
"deploy": "now --public -e GITHUB_TOKEN && now alias && now rm --yes --safe graphql-binding-github"
55
},
66
"dependencies": {
7-
"graphql-binding-github": "^0.1.1",
8-
"graphql-import": "^0.1.5",
9-
"graphql-yoga": "^0.2.3"
7+
"graphql-binding-github": "^0.2.0",
8+
"graphql-import": "^0.1.8",
9+
"graphql-yoga": "^0.4.3"
1010
},
1111
"now": {
1212
"alias": "graphql-binding-github"
1313
},
14-
"engines": { "node": ">=8.0.0" }
14+
"engines": {
15+
"node": ">=8.0.0"
16+
}
1517
}

example/src/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ const resolvers = {
1616
hello: (parent, { name }) => `Hello ${name || 'World'}!`,
1717
favoriteRepos: (parent, args, context, info) => {
1818
return Promise.all(
19-
favoriteRepos.map(args =>
20-
github.delegate('query', 'repository', args, context, info),
21-
),
19+
favoriteRepos.map(args => github.query.repository(args, info)),
2220
)
2321
},
2422
},

0 commit comments

Comments
 (0)