Skip to content

Commit 9317b73

Browse files
committed
Merge branch 'master' of github.com:graphql-binding/graphql-binding-github into codegen
2 parents 4bbbac0 + 81f9b38 commit 9317b73

File tree

3 files changed

+12
-17
lines changed

3 files changed

+12
-17
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devDependencies": {
2424
"@types/graphql": "0.13.0",
2525
"@types/node": "9.6.11",
26-
"typescript": "^2.8.3"
26+
"typescript": "2.8.3"
2727
},
2828
"repository": {
2929
"type": "git",

src/schema.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import * as fs from 'fs'
22
import { makeExecutableSchema } from 'graphql-tools'
3+
import { GraphQLSchema } from 'graphql'
34

4-
export default makeExecutableSchema({
5+
const schema: GraphQLSchema = makeExecutableSchema({
56
typeDefs: fs.readFileSync(__dirname + '/schema.graphql', 'utf-8'),
67
})
8+
9+
export default schema

yarn.lock

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,10 @@
1010
version "0.13.0"
1111
resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.13.0.tgz#78a33a7f429a06a64714817d9130d578e0f35ecb"
1212

13-
13+
"@types/[email protected]", "@types/node@^9.4.6":
1414
version "9.6.11"
1515
resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.11.tgz#3edd774dbf52aa19b5dca7f9d4b38f719c39167a"
1616

17-
"@types/node@^9.4.6":
18-
version "9.6.7"
19-
resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.7.tgz#5f3816d1db2155edcde1b2e3aa5d0e5c520cb564"
20-
2117
ansi-regex@^2.0.0:
2218
version "2.1.1"
2319
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
@@ -62,8 +58,8 @@ [email protected], apollo-link@^1.2.1, apollo-link@^1.2.2:
6258
zen-observable-ts "^0.8.9"
6359

6460
apollo-utilities@^1.0.0, apollo-utilities@^1.0.1:
65-
version "1.0.3"
66-
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.3.tgz#bf435277609850dd442cf1d5c2e8bc6655eaa943"
61+
version "1.0.12"
62+
resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.0.12.tgz#9e2b2a34cf89f3bf0d73a664effd8c1bb5d1b7f7"
6763

6864
arrify@^1.0.0:
6965
version "1.0.1"
@@ -234,14 +230,10 @@ isexe@^2.0.0:
234230
version "2.0.0"
235231
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
236232

237-
[email protected], iterall@^1.2.1:
233+
[email protected], iterall@^1.1.3, iterall@^1.2.1:
238234
version "1.2.2"
239235
resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7"
240236

241-
iterall@^1.1.3:
242-
version "1.1.3"
243-
resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9"
244-
245237
lcid@^1.0.0:
246238
version "1.0.0"
247239
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
@@ -449,13 +441,13 @@ ts-node@^6.0.2:
449441
source-map-support "^0.5.3"
450442
yn "^2.0.0"
451443

452-
typescript@^2.8.3:
444+
453445
version "2.8.3"
454446
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.8.3.tgz#5d817f9b6f31bb871835f4edf0089f21abe6c170"
455447

456448
uuid@^3.1.0:
457-
version "3.1.0"
458-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
449+
version "3.2.1"
450+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
459451

460452
461453
version "2.0.4"

0 commit comments

Comments
 (0)