Skip to content

Commit d3ae7a8

Browse files
committed
fix: fixed main and example to be compatible with all newest versions
1 parent 1eaf06a commit d3ae7a8

File tree

4 files changed

+83
-110
lines changed

4 files changed

+83
-110
lines changed

example/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
},
66
"dependencies": {
77
"graphql-binding-github": "0.2.0",
8-
"graphql-import": "0.2.0",
9-
"graphql-yoga": "0.8.0"
8+
"graphql-yoga": "1.0.0"
109
},
1110
"now": {
1211
"alias": "graphql-binding-github"

example/src/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
const { GitHub } = require('graphql-binding-github')
22
const { GraphQLServer } = require('graphql-yoga')
3-
const { importSchema } = require('graphql-import')
43

54
const favoriteRepos = [
65
{ owner: 'graphcool', name: 'graphql-yoga' },
@@ -10,7 +9,7 @@ const favoriteRepos = [
109
const token = process.env.GITHUB_TOKEN || ''
1110
const github = new GitHub(token)
1211

13-
const typeDefs = importSchema('schemas/app.graphql')
12+
const typeDefs = '.schemas/app.graphql'
1413
const resolvers = {
1514
Query: {
1615
hello: (parent, { name }) => `Hello ${name || 'World'}!`,

example/yarn.lock

+68-42
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ apollo-link-http@^1.3.2:
9090
dependencies:
9191
apollo-link "^1.0.7"
9292

93-
apollo-link@^1.0.7:
93+
apollo-link@^1.0.0, apollo-link@^1.0.7:
9494
version "1.0.7"
9595
resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.0.7.tgz#42cd38a7378332fc3e41a214ff6a6e5e703a556f"
9696
dependencies:
@@ -113,6 +113,13 @@ apollo-server-express@^1.3.2:
113113
apollo-server-core "^1.3.2"
114114
apollo-server-module-graphiql "^1.3.0"
115115

116+
117+
version "1.3.2"
118+
resolved "https://registry.yarnpkg.com/apollo-server-lambda/-/apollo-server-lambda-1.3.2.tgz#bcf75f3d7115d11cc9892ad3b17427b3d536df0f"
119+
dependencies:
120+
apollo-server-core "^1.3.2"
121+
apollo-server-module-graphiql "^1.3.0"
122+
116123
apollo-server-module-graphiql@^1.3.0:
117124
version "1.3.2"
118125
resolved "https://registry.yarnpkg.com/apollo-server-module-graphiql/-/apollo-server-module-graphiql-1.3.2.tgz#0a9e4c48dece3af904fee333f95f7b9817335ca7"
@@ -436,20 +443,20 @@ graceful-fs@^4.1.2, graceful-fs@^4.1.6:
436443
version "4.1.11"
437444
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
438445

439-
graphcool-json-schema@^1.0.1-beta.5:
440-
version "1.0.1-beta.6"
441-
resolved "https://registry.yarnpkg.com/graphcool-json-schema/-/graphcool-json-schema-1.0.1-beta.6.tgz#95c3442c84d6c7596c2e2e50db185529a18c501e"
446+
graphcool-json-schema@1.2.0:
447+
version "1.2.0"
448+
resolved "https://registry.yarnpkg.com/graphcool-json-schema/-/graphcool-json-schema-1.2.0.tgz#6c7a9de36a130c5048fa8d9817dff2b5a88bc226"
442449

443-
graphcool-yml@^0.1.7:
444-
version "0.1.7"
445-
resolved "https://registry.yarnpkg.com/graphcool-yml/-/graphcool-yml-0.1.7.tgz#3de1219771f40d4d0cf4fabdd113d6132734146a"
450+
graphcool-yml@0.2.2:
451+
version "0.2.2"
452+
resolved "https://registry.yarnpkg.com/graphcool-yml/-/graphcool-yml-0.2.2.tgz#b9f67b6581e149d573f631afdd938cb5f44f9813"
446453
dependencies:
447454
ajv "^5.5.1"
448455
bluebird "^3.5.1"
449456
debug "^3.1.0"
450457
dotenv "^4.0.0"
451458
fs-extra "^4.0.3"
452-
graphcool-json-schema "^1.0.1-beta.5"
459+
graphcool-json-schema "1.2.0"
453460
isomorphic-fetch "^2.2.1"
454461
js-yaml "^3.10.0"
455462
json-stable-stringify "^1.0.1"
@@ -478,12 +485,12 @@ graphql-binding@^0.1.0:
478485
graphql "^0.12.3"
479486
graphql-tools "^2.14.1"
480487

481-
graphql-config-extension-graphcool@^0.2.0:
482-
version "0.2.0"
483-
resolved "https://registry.yarnpkg.com/graphql-config-extension-graphcool/-/graphql-config-extension-graphcool-0.2.0.tgz#ac5b70bb88bb56ce6897ae4ce56d6189cae360c1"
488+
graphql-config-extension-graphcool@^1.0.0:
489+
version "1.0.1"
490+
resolved "https://registry.yarnpkg.com/graphql-config-extension-graphcool/-/graphql-config-extension-graphcool-1.0.1.tgz#841210ddac9ea43d97a3c1faf65555ec5fb6fcbf"
484491
dependencies:
485-
graphcool-yml "^0.1.7"
486-
graphql-config "^1.1.1"
492+
graphcool-yml "0.2.2"
493+
graphql-config "^1.1.4"
487494

488495
graphql-config@^1.1.1:
489496
version "1.1.4"
@@ -496,22 +503,24 @@ graphql-config@^1.1.1:
496503
minimatch "^3.0.4"
497504
rimraf "^2.6.2"
498505

506+
graphql-config@^1.1.4:
507+
version "1.1.5"
508+
resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.1.5.tgz#c8de9cdaef946ceb4c4ab0acc970db5805c90dbf"
509+
dependencies:
510+
graphql "^0.12.3"
511+
graphql-import "^0.2.0"
512+
graphql-request "^1.4.0"
513+
js-yaml "^3.10.0"
514+
minimatch "^3.0.4"
515+
rimraf "^2.6.2"
516+
499517
graphql-extensions@^0.0.x:
500518
version "0.0.5"
501519
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.0.5.tgz#63bc4a3fd31aab12bfadf783cbc038a9a6937cf0"
502520
dependencies:
503521
core-js "^2.5.1"
504522
source-map-support "^0.5.0"
505523

506-
507-
version "0.2.0"
508-
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.2.0.tgz#4877fef467d8a9255e6760c3988f6c00018e94af"
509-
dependencies:
510-
"@types/graphql" "0.11.7"
511-
"@types/lodash" "^4.14.85"
512-
graphql "^0.12.3"
513-
lodash "^4.17.4"
514-
515524
graphql-import@^0.1.7:
516525
version "0.1.8"
517526
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.1.8.tgz#403b9f9dd83a206a9808ae2ab6afab4040e0359d"
@@ -521,28 +530,33 @@ graphql-import@^0.1.7:
521530
graphql "^0.12.3"
522531
lodash "^4.17.4"
523532

524-
graphql-import@^0.1.9:
525-
version "0.1.9"
526-
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.1.9.tgz#9161f4f7ea92337b60fd40e22e64d3a68c212729"
533+
graphql-import@^0.2.0:
534+
version "0.2.1"
535+
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.2.1.tgz#96b11fbd180e169500c1a76dbcfa05ec8672e94c"
527536
dependencies:
528-
"@types/graphql" "0.11.7"
529-
"@types/lodash" "^4.14.85"
530537
graphql "^0.12.3"
531538
lodash "^4.17.4"
532539

533-
graphql-playground-html@^1.3.13:
534-
version "1.3.13"
535-
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.3.13.tgz#ac1b0491af1052fb0cbb090e054f6f6fa2797486"
540+
graphql-playground-html@1.4.2, graphql-playground-html@^1.3.6:
541+
version "1.4.2"
542+
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.4.2.tgz#af97a84ea6cf6ba18e8ff148a6a8b17eef40aa46"
536543
dependencies:
537544
dotenv "^4.0.0"
538545
graphql-config "^1.1.1"
539-
graphql-config-extension-graphcool "^0.2.0"
546+
graphql-config-extension-graphcool "^1.0.0"
547+
548+
549+
version "1.4.3"
550+
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.4.3.tgz#51e46711fc75b94bcc23b058ea364789a1bda65b"
551+
dependencies:
552+
graphql-playground-html "1.4.2"
553+
graphql-playground-middleware "^1.2.1-beta.6"
540554

541-
graphql-playground-middleware-express@^1.3.13:
542-
version "1.3.13"
543-
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.3.13.tgz#78931f1b06840566bfd90a6b1c97d0eb8e30af3f"
555+
graphql-playground-middleware-lambda@1.3.7:
556+
version "1.3.7"
557+
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-lambda/-/graphql-playground-middleware-lambda-1.3.7.tgz#5ad74f71f1397da3e6969762b666643fa3f6bf02"
544558
dependencies:
545-
graphql-playground-html "^1.3.13"
559+
graphql-playground-html "^1.3.6"
546560
graphql-playground-middleware "^1.2.1-beta.6"
547561

548562
graphql-playground-middleware@^1.2.1-beta.6:
@@ -564,33 +578,45 @@ graphql-subscriptions@^0.5.6:
564578
es6-promise "^4.1.1"
565579
iterall "^1.1.3"
566580

567-
graphql-tools@^2.14.0, graphql-tools@^2.14.1:
581+
graphql-tools@^2.14.1:
568582
version "2.14.1"
569583
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.14.1.tgz#15f96683d7f178042baddcfc17d73dcfeee67356"
570584
dependencies:
571585
apollo-utilities "^1.0.1"
572586
deprecated-decorator "^0.1.6"
573587
uuid "^3.1.0"
574588

575-
576-
version "0.8.0"
577-
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-0.8.0.tgz#7b5d33d5fbd0b58f419b091266fb11ba49a127ca"
589+
graphql-tools@^2.16.0:
590+
version "2.16.0"
591+
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-2.16.0.tgz#689e46ce8b4570e01214cb7fda4a0c9338c0459f"
592+
dependencies:
593+
apollo-link "^1.0.0"
594+
apollo-utilities "^1.0.1"
595+
deprecated-decorator "^0.1.6"
596+
graphql-subscriptions "^0.5.6"
597+
uuid "^3.1.0"
598+
599+
600+
version "1.0.0"
601+
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-1.0.0.tgz#19fee6979b0487a52667fea1a338a5647b7d3bf7"
578602
dependencies:
579603
"@types/cors" "^2.8.3"
580604
"@types/express" "^4.0.39"
581605
"@types/graphql" "^0.11.7"
582606
"@types/zen-observable" "^0.5.3"
583607
apollo-link "^1.0.7"
584608
apollo-server-express "^1.3.2"
609+
apollo-server-lambda "1.3.2"
585610
apollo-upload-server "^4.0.0-alpha.1"
586611
body-parser-graphql "1.0.0"
587612
cors "^2.8.4"
588613
express "^4.16.2"
589614
graphql "^0.12.0"
590-
graphql-import "^0.1.9"
591-
graphql-playground-middleware-express "^1.3.13"
615+
graphql-import "^0.2.0"
616+
graphql-playground-middleware-express "1.4.3"
617+
graphql-playground-middleware-lambda "1.3.7"
592618
graphql-subscriptions "^0.5.6"
593-
graphql-tools "^2.14.0"
619+
graphql-tools "^2.16.0"
594620
portfinder "^1.0.13"
595621
subscriptions-transport-ws "^0.9.4"
596622

src/index.ts

+13-64
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,25 @@
1+
import { Binding } from 'graphql-binding/dist'
12
import { IResolvers } from 'graphql-tools/dist/Interfaces'
2-
import { delegateToSchema, makeRemoteExecutableSchema } from 'graphql-tools'
3-
import {
4-
GraphQLSchema,
5-
GraphQLResolveInfo,
6-
GraphQLUnionType,
7-
GraphQLInterfaceType,
8-
buildSchema,
9-
} from 'graphql'
3+
import { makeRemoteExecutableSchema } from 'graphql-tools'
4+
import { GraphQLSchema, GraphQLUnionType, GraphQLInterfaceType, buildSchema } from 'graphql'
105
import * as fs from 'fs'
116
import * as path from 'path'
127
import GitHubLink from './GitHubLink'
13-
import { makeProxy } from 'graphql-binding'
14-
15-
export interface Query {
16-
[rootField: string]: <T = any>(
17-
args?: any,
18-
info?: GraphQLResolveInfo | string,
19-
) => Promise<T>
20-
}
21-
22-
export class GitHub {
23-
schema: GraphQLSchema
24-
query: Query
25-
mutation: Query
268

9+
export class GitHub extends Binding {
2710
constructor(token: string) {
28-
const typeDefs = fs.readFileSync(
29-
path.join(__dirname, '..', 'schema', 'github.graphql'),
30-
{ encoding: 'utf8' },
31-
)
11+
const typeDefs = fs.readFileSync(path.join(__dirname, '..', 'schema', 'github.graphql'), {
12+
encoding: 'utf8'
13+
})
3214

3315
const link = new GitHubLink(token)
3416

35-
this.schema = makeRemoteExecutableSchema({
17+
const schema = makeRemoteExecutableSchema({
3618
schema: typeDefs,
37-
link,
19+
link
3820
})
3921

40-
this.query = makeProxy<Query>({
41-
schema: this.schema,
42-
fragmentReplacements: {},
43-
operation: 'query',
44-
})
45-
this.mutation = makeProxy<Query>({
46-
schema: this.schema,
47-
fragmentReplacements: {},
48-
operation: 'mutation',
49-
})
50-
}
51-
52-
delegate(
53-
operation: 'query' | 'mutation',
54-
fieldName: string,
55-
args: { [key: string]: any },
56-
context: any,
57-
info: GraphQLResolveInfo,
58-
) {
59-
return delegateToSchema(
60-
this.schema,
61-
{},
62-
operation,
63-
fieldName,
64-
args,
65-
context,
66-
info,
67-
)
22+
super({ schema, fragmentReplacements: {} })
6823
}
6924

7025
remoteResolvers(filterSchema?: GraphQLSchema | string): IResolvers {
@@ -73,23 +28,17 @@ export class GitHub {
7328
if (filterSchema && typeof filterSchema === 'string') {
7429
filterSchema = buildSchema(filterSchema)
7530
}
76-
const filterTypeMap =
77-
filterSchema instanceof GraphQLSchema
78-
? filterSchema.getTypeMap()
79-
: typeMap
31+
const filterTypeMap = filterSchema instanceof GraphQLSchema ? filterSchema.getTypeMap() : typeMap
8032
const filterType = typeName => typeName in filterTypeMap
8133

8234
const resolvers = {}
8335
Object.keys(typeMap)
8436
.filter(filterType)
8537
.forEach(typeName => {
8638
const type = typeMap[typeName]
87-
if (
88-
type instanceof GraphQLUnionType ||
89-
type instanceof GraphQLInterfaceType
90-
) {
39+
if (type instanceof GraphQLUnionType || type instanceof GraphQLInterfaceType) {
9140
resolvers[typeName] = {
92-
__resolveType: type.resolveType,
41+
__resolveType: type.resolveType
9342
}
9443
}
9544
})

0 commit comments

Comments
 (0)