Skip to content

Commit ab5ffdc

Browse files
committed
github binding interfaces
1 parent e890e1e commit ab5ffdc

File tree

6 files changed

+76
-33
lines changed

6 files changed

+76
-33
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
22
.DS_Store
33
*.log
4-
dist
4+
dist
5+
.vscode

example/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"deploy": "now --public && now alias && now rm --yes --safe graphql-binding-github"
55
},
66
"dependencies": {
7-
"graphql-binding-github": "^0.1.0",
8-
"graphql-import": "^0.1.4",
9-
"graphql-yoga": "^0.2.2"
7+
"graphql-binding-github": "^0.1.1",
8+
"graphql-import": "^0.1.5",
9+
"graphql-yoga": "^0.2.3"
1010
},
1111
"now": {
1212
"alias": "graphql-binding-github"

example/src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const favoriteRepos = [
77
{ owner: 'graphql', name: 'graphql-js' },
88
]
99

10-
const token = ''
10+
const token = process.env.GITHUB_TOKEN || ''
1111
const github = new GitHub(token)
1212

1313
const typeDefs = importSchema('schemas/app.graphql')
@@ -22,6 +22,7 @@ const resolvers = {
2222
)
2323
},
2424
},
25+
...github.remoteResolvers(typeDefs),
2526
}
2627

2728
const server = new GraphQLServer({ resolvers, typeDefs })

example/yarn.lock

+19-12
Original file line numberDiff line numberDiff line change
@@ -368,16 +368,15 @@ glob@^7.0.5:
368368
once "^1.3.0"
369369
path-is-absolute "^1.0.0"
370370

371-
graphql-binding-github@^0.1.0:
372-
version "0.1.0"
373-
resolved "https://registry.yarnpkg.com/graphql-binding-github/-/graphql-binding-github-0.1.0.tgz#c871315d5882a8ecfa394016263e5402609eb5b1"
371+
graphql-binding-github@^0.1.1:
372+
version "0.1.1"
373+
resolved "https://registry.yarnpkg.com/graphql-binding-github/-/graphql-binding-github-0.1.1.tgz#38b9a3ba28c1b05d638d98bd49290346b784d1b6"
374374
dependencies:
375-
"@types/graphql" "^0.11.7"
376375
apollo-link "^1.0.5"
377376
apollo-link-http "^1.3.0"
378377
cross-fetch "^1.1.1"
379378
graphql "^0.11.7"
380-
graphql-tools "^2.11.0"
379+
graphql-tools "^2.12.0"
381380

382381
graphql-config@^1.0.9:
383382
version "1.0.9"
@@ -396,9 +395,9 @@ graphql-extensions@^0.0.x:
396395
core-js "^2.5.1"
397396
source-map-support "^0.5.0"
398397

399-
graphql-import@^0.1.4:
400-
version "0.1.4"
401-
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.1.4.tgz#eb9d132ee07da196f32635422ecfaa07fc1ab596"
398+
graphql-import@^0.1.5:
399+
version "0.1.5"
400+
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.1.5.tgz#f1f6ae6e015adcea15c3e8bbe72247d3795113ea"
402401
dependencies:
403402
"@types/graphql" "^0.11.6"
404403
"@types/lodash" "^4.14.85"
@@ -437,17 +436,25 @@ graphql-subscriptions@^0.5.4:
437436
es6-promise "^4.1.1"
438437
iterall "^1.1.3"
439438

440-
graphql-tools@^2.11.0, graphql-tools@^2.7.2:
439+
graphql-tools@^2.12.0:
440+
version "2.12.0"
441+
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.12.0.tgz#6286902650537bf7f20ac87159ab5c8b2e9741f8"
442+
dependencies:
443+
apollo-utilities "^1.0.1"
444+
deprecated-decorator "^0.1.6"
445+
uuid "^3.1.0"
446+
447+
graphql-tools@^2.7.2:
441448
version "2.11.0"
442449
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.11.0.tgz#be86d14acfe4ca9411967c6b54bac2eedc0dbb72"
443450
dependencies:
444451
apollo-utilities "^1.0.1"
445452
deprecated-decorator "^0.1.6"
446453
uuid "^3.1.0"
447454

448-
graphql-yoga@^0.2.2:
449-
version "0.2.2"
450-
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-0.2.2.tgz#57d73be235fc4f5411e286a6985b18cbace3dc0a"
455+
graphql-yoga@^0.2.3:
456+
version "0.2.3"
457+
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-0.2.3.tgz#b1f97a24614985ca210992b87e882a74135b9043"
451458
dependencies:
452459
"@types/cors" "^2.8.3"
453460
"@types/express" "^4.0.39"

src/index.ts

+44-4
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
1+
import { IResolvers } from 'graphql-tools/dist/Interfaces'
12
import {
23
delegateToSchema,
34
makeExecutableSchema,
45
makeRemoteExecutableSchema,
56
} from 'graphql-tools'
6-
import { GraphQLSchema, GraphQLResolveInfo } from 'graphql'
7+
import {
8+
GraphQLSchema,
9+
GraphQLResolveInfo,
10+
GraphQLUnionType,
11+
GraphQLInterfaceType,
12+
GraphQLScalarType,
13+
buildSchema,
14+
GraphQLAbstractType,
15+
} from 'graphql'
716
import * as fs from 'fs'
817
import * as path from 'path'
918
import GitHubLink from './GitHubLink'
1019

1120
export class GitHub {
12-
private schema: GraphQLSchema
21+
schema: GraphQLSchema
1322

1423
constructor(token: string) {
1524
const typeDefs = fs.readFileSync(
1625
path.join(__dirname, '..', 'schema', 'github.graphql'),
1726
{ encoding: 'utf8' },
1827
)
1928

20-
const introspectionSchema = makeExecutableSchema({ typeDefs })
2129
const link = new GitHubLink(token)
2230

2331
this.schema = makeRemoteExecutableSchema({
24-
schema: introspectionSchema,
32+
schema: typeDefs,
2533
link,
2634
})
2735
}
@@ -43,4 +51,36 @@ export class GitHub {
4351
info,
4452
)
4553
}
54+
55+
remoteResolvers(filterSchema?: GraphQLSchema | string): IResolvers {
56+
const typeMap = this.schema.getTypeMap()
57+
58+
if (filterSchema && typeof filterSchema === 'string') {
59+
filterSchema = buildSchema(filterSchema)
60+
}
61+
const filterTypeMap =
62+
filterSchema instanceof GraphQLSchema
63+
? filterSchema.getTypeMap()
64+
: typeMap
65+
const filterType = typeName => typeName in filterTypeMap
66+
67+
const resolvers = {}
68+
Object.keys(typeMap)
69+
.filter(filterType)
70+
.forEach(typeName => {
71+
const type = typeMap[typeName]
72+
if (
73+
type instanceof GraphQLUnionType ||
74+
type instanceof GraphQLInterfaceType
75+
) {
76+
resolvers[typeName] = {
77+
__resolveType: type.resolveType,
78+
}
79+
} else if (type instanceof GraphQLScalarType) {
80+
resolvers[typeName] = type
81+
}
82+
})
83+
84+
return resolvers
85+
}
4686
}

yarn.lock

+6-12
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,13 @@
22
# yarn lockfile v1
33

44

5-
"@types/events@*":
6-
version "1.1.0"
7-
resolved "https://registry.yarnpkg.com/@types/events/-/events-1.1.0.tgz#93b1be91f63c184450385272c47b6496fd028e02"
8-
95
"@types/graphql@^0.11.7":
106
version "0.11.7"
117
resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.11.7.tgz#da39a2f7c74e793e32e2bb7b3b68da1691532dd5"
128

13-
"@types/node@^8.0.54":
14-
version "8.0.54"
15-
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.54.tgz#3fd9357db4af388b79e03845340259440edffde6"
16-
dependencies:
17-
"@types/events" "*"
9+
"@types/node@^8.0.56":
10+
version "8.0.56"
11+
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.56.tgz#c4652f88d7a677e26ccc16c1485c282ce28f1ce9"
1812

1913
2014
version "0.5.3"
@@ -55,9 +49,9 @@ encoding@^0.1.11:
5549
dependencies:
5650
iconv-lite "~0.4.13"
5751

58-
graphql-tools@^2.11.0:
59-
version "2.11.0"
60-
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.11.0.tgz#be86d14acfe4ca9411967c6b54bac2eedc0dbb72"
52+
graphql-tools@^2.12.0:
53+
version "2.12.0"
54+
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.12.0.tgz#6286902650537bf7f20ac87159ab5c8b2e9741f8"
6155
dependencies:
6256
apollo-utilities "^1.0.1"
6357
deprecated-decorator "^0.1.6"

0 commit comments

Comments
 (0)