Skip to content

Commit 4d619f4

Browse files
committed
Update GraphQL to 0.4.2
1 parent 32fcc93 commit 4d619f4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"babel-runtime": "~5.8.3"
5050
},
5151
"peerDependencies": {
52-
"graphql": "~0.3.0"
52+
"graphql": "~0.4.2"
5353
},
5454
"devDependencies": {
5555
"babel": "5.8.3",
@@ -60,7 +60,7 @@
6060
"coveralls": "2.11.3",
6161
"eslint": "0.24.0",
6262
"flow-bin": "0.13.1",
63-
"graphql": "0.3.0",
63+
"graphql": "0.4.2",
6464
"isparta": "3.0.3",
6565
"mocha": "2.2.5",
6666
"sane": "1.1.3"

src/node/__tests__/nodeasync.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { describe, it } from 'mocha';
1111
import { expect } from 'chai';
1212

1313
import {
14+
GraphQLID,
1415
GraphQLNonNull,
1516
GraphQLObjectType,
1617
GraphQLSchema,
@@ -46,7 +47,7 @@ var userType = new GraphQLObjectType({
4647
name: 'User',
4748
fields: () => ({
4849
id: {
49-
type: new GraphQLNonNull(GraphQLString),
50+
type: new GraphQLNonNull(GraphQLID),
5051
},
5152
name: {
5253
type: GraphQLString,

0 commit comments

Comments
 (0)