-
Notifications
You must be signed in to change notification settings - Fork 2k
Update deps #3667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update deps #3667
Conversation
✅ Deploy Preview for compassionate-pike-271cb3 ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Hi @IvanGoncharov, I'm @github-actions bot happy to help you with this PR 👋 Supported commandsPlease post this commands in separate comments and only one per comment:
|
@@ -505,6 +505,7 @@ overrides: | |||
'@typescript-eslint/ban-tslint-comment': error | |||
'@typescript-eslint/ban-types': off # TODO temporarily disabled | |||
'@typescript-eslint/class-literal-property-style': off # TODO enable after TS conversion | |||
'@typescript-eslint/consistent-generic-constructors': error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new rule triggered a couple small code changes ⬇️
@@ -9,7 +9,7 @@ The simplest way to run a GraphQL API server is to use [Express](https://express | |||
npm install express express-graphql graphql --save | |||
``` | |||
|
|||
Let's modify our “hello world” example so that it's an API server rather than a script that runs a single query. We can use the 'express' module to run a webserver, and instead of executing a query directly with the `graphql` function, we can use the `express-graphql` library to mount a GraphQL API server on the “/graphql” HTTP endpoint: | |||
Let's modify our “hello world” example so that it's an API server rather than a script that runs a single query. We can use the 'express' module to run a web server, and instead of executing a query directly with the `graphql` function, we can use the `express-graphql` library to mount a GraphQL API server on the “/graphql” HTTP endpoint: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cspell begin to error on it and I think web server
is better.
No description provided.