...
"dependencies": {
"express": "^4.15.4",
"express-graphql": "^0.6.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0"
}
...
and
npm install
produces
...
โโโฌ [email protected]
โ โโโ [email protected]
โ โโโฌ [email protected]
โ โโโ [email protected]
โ โโโ [email protected]
โโโ UNMET PEER DEPENDENCY graphql@^0.10.0 || ^0.11.0
@connercowling ,
This problem came up on a recent episode of Fun Fun Function (https://www.youtube.com/watch?v=lAJWHHUz8_8). The solution there was to manually install the GraphQL package as a dependency (not dev):
npm install --save graphql
Hope that helps.
@connercowling @vjwilson ๐ฆ v0.6.12 released with support for graphql v0.12.x and v0.13.x.
Most helpful comment
@connercowling ,
This problem came up on a recent episode of Fun Fun Function (https://www.youtube.com/watch?v=lAJWHHUz8_8). The solution there was to manually install the GraphQL package as a dependency (not dev):
Hope that helps.