Skip to content

Commit 597919e

Browse files
authored
Small bug fix in part8c.md: remove gql before the string literal
Remove gql before the string literal of the typeDefs constant, since it is used in the client and not the server to to queries.
1 parent e89fe16 commit 597919e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/8/en/part8c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ mongoose.connect(MONGODB_URI)
7373
console.log('error connection to MongoDB:', error.message)
7474
})
7575

76-
const typeDefs = gql`
76+
const typeDefs = `
7777
...
7878
`
7979

0 commit comments

Comments
 (0)