File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 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" ,
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"
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import { describe, it } from 'mocha';
1111import { expect } from 'chai' ;
1212
1313import {
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 ,
You can’t perform that action at this time.
0 commit comments