Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/pages/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ graphql({
</Tabs.Tab>
<Tabs.Tab>
```javascript
const { graphql, GraphQLSchema, GraphQLObjectType } = require('graphql');
const { graphql, GraphQLSchema, GraphQLObjectType, GraphQLString } = require('graphql');

// Construct a schema
const schema = new GraphQLSchema({
Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/running-an-express-graphql-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ console.log('Running a GraphQL API server at http://localhost:4000/graphql');
</Tabs.Tab>
<Tabs.Tab>
```javascript
const { GraphQLObjectType, GraphQLSchema } = require('graphql');
const { GraphQLObjectType, GraphQLSchema, GraphQLString } = require('graphql');
const { createHandler } = require('graphql-http/lib/use/express');
const express = require('express');

Expand Down