Skip to content

Commit a829d13

Browse files
committed
fix failing build
1 parent 60e1830 commit a829d13

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/learn/response.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In addition to the `data` key, the GraphQL specification outlines how [errors](h
4141

4242
Request errors typically occur because the client made a mistake. For example, there may be a _syntax error_ in the document, such as a missing bracket or the use of an unknown root operation type keyword:
4343

44-
<!-- snippet-ignore -->
44+
{/* <!-- snippet-ignore --> */}
4545
```graphql
4646
# { "graphiql": true }
4747
operation {

src/pages/learn/schema.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ type Character {
210210

211211
As we see above, the Non-Null and List modifiers can be combined. For example, you can have a List of Non-Null `String` types:
212212

213-
<!-- snippet-ignore -->
213+
{/* <!-- snippet-ignore --> */}
214214
```graphql
215215
myField: [String!]
216216
```
@@ -226,7 +226,7 @@ myField: ["a", null, "b"] // error
226226

227227
Now, let's say we defined a Non-Null List of `String` types:
228228

229-
<!-- snippet-ignore -->
229+
{/* <!-- snippet-ignore --> */}
230230
```graphql
231231
myField: [String]!
232232
```

0 commit comments

Comments
 (0)