Latest express-graphql is not working with the latest graphql
See original GitHub issueLatest express-graphql isnot working with the latest graphql:
npm install express-graphql@latest --save
npm WARN express-graphql@0.6.12 requires a peer of graphql@^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 but none is installed. You must install peer dependencies yourself.
package.json:
"dependencies": {
"express-graphql": "^0.6.12",
"graphql": "^14.0.2",
}
Issue Analytics
- State:
- Created 5 years ago
- Reactions:9
- Comments:25 (6 by maintainers)
Top Results From Across the Web
unable to install express-graphql - node.js - Stack Overflow
Now, First download express-graphql from npm ( Download before any other npm package in app ). These steps solve my problem.
Read more >express-graphql
Constructs an Express application based on a GraphQL schema. See the express-graphql tutorial for sample usage. See the GitHub README for more extensive ......
Read more >express-graphql - npm
Latest version: 0.12.0, last published: 2 years ago. Start using express-graphql in your project by running `npm i express-graphql`.
Read more >Using Node.js Express to Quickly Build a GraphQL Server
It has been created to solve some structural problems developers ... The latest step to get a basic GraphQL API working is creating...
Read more >Get started with Apollo Server - Apollo GraphQL Docs
This tutorial assumes that you are familiar with the command line and JavaScript and have installed a recent Node.js (v14.16.0+) version.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Still getting this issue
Guys. What I have done is gone through each warning and tried to install them.
npm WARN graphql-express@2.0.1 requires a peer of rxjs@^6.5.0
so I didsudo npm install rxjs
then I again got warning with..requires a peer of graphql@^14.4.1
so I guess the graphql is not installed in my system so I didsudo npm install graphql
which respondnpm WARN y@1.0.0 No repository field.
then againsudo npm install rxjs
which outputnpm WARN y@1.0.0 No repository field.
then finally I ran ‘sudo npm install graphql-express’npm WARN y@1.0.0 No repository field.
That’s it.