Skip to content

Commit 90c8cd9

Browse files
authored
add typedef and resolvers in apollo server nodejs doc (#1418)
Signed-off-by: Bhavya Dhiman <[email protected]>
1 parent 8c02c5d commit 90c8cd9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/code/language-support/javascript/server/apollo-server.md

+13
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,19 @@ Then run `node server.js` with this code in `server.js`:
1717
```js
1818
import { ApolloServer } from "@apollo/server"
1919
import { startStandaloneServer } from "@apollo/server/standalone"
20+
import { buildSchema } from "graphql"
21+
22+
const schema = buildSchema(`
23+
type Query {
24+
hello: String
25+
}
26+
`)
27+
28+
const resolvers = {
29+
Query: {
30+
hello: () => "Hello World!",
31+
},
32+
}
2033

2134
const server = new ApolloServer({
2235
typeDefs,

0 commit comments

Comments
 (0)