Skip to content

Commit c3f6359

Browse files
authored
Fix: incorrect path for the mutations page
1 parent a3f145b commit c3f6359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/pages/learn/schema.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ Most of the examples we've covered on this page demonstrate how Object, Scalar,
413413

414414
So far, we've only talked about using scalar values (like Enums or String types) as an input type for a field argument. However, you can also pass complex objects as arguments using an [Input Object type](https://spec.graphql.org/draft/#sec-Input-Objects), which is the last kind of named types in GraphQL that we'll explore.
415415

416-
This is particularly valuable in the case of [mutations](/learn/queries/#mutations), where you might want to pass in a whole object to be created. In SDL, Input Object types look similar to regular Object types, but with the keyword `input` instead of `type`:
416+
This is particularly valuable in the case of [mutations](/learn/mutations/), where you might want to pass in a whole object to be created. In SDL, Input Object types look similar to regular Object types, but with the keyword `input` instead of `type`:
417417

418418
```graphql
419419
input ReviewInput {

0 commit comments

Comments
 (0)