Skip to content

Imported GraphQLString and fixed the resolver part as per code first. #4371

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
21 changes: 8 additions & 13 deletions website/pages/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,30 +58,25 @@ graphql({
</Tabs.Tab>
<Tabs.Tab>
```javascript
const { graphql, GraphQLSchema, GraphQLObjectType } = require('graphql');

// Construct a schema
const { graphql, GraphQLSchema, GraphQLObjectType, GraphQLString } = require('graphql');
// Construct a schema and resolver
const schema = new GraphQLSchema({
query: new GraphQLObjectType({
name: 'Query',
fields: {
hello: { type: GraphQLString },
hello: {
type: GraphQLString,
resolve: () => 'Hello world!'
},
},
}),
});

// The rootValue provides a resolver function for each API endpoint
const rootValue = {
hello() {
return 'Hello world!';
},
};


// Run the GraphQL query '{ hello }' and print out the response
graphql({
schema,
source: '{ hello }',
rootValue,
}).then((response) => {
console.log(response);
});
Expand Down