Skip to content

Commit 3ad3d68

Browse files
authored
fix: learn/schema typo (#1824)
1 parent d6ef293 commit 3ad3d68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/learn/schema.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ You can arbitrarily nest any number of Non-Null and List modifiers, according to
261261

262262
Like many type systems, GraphQL supports _abstract types_. The first of these types that we'll explore is an [Interface type](https://spec.graphql.org/draft/#sec-Interfaces), which defines a certain set of fields that a concrete Object type or other Interface type must also include to implement it.
263263

264-
For example, you could have an `Character` Interface type that represents any character in the Star Wars trilogy:
264+
For example, you could have a `Character` Interface type that represents any character in the Star Wars trilogy:
265265

266266
```graphql
267267
interface Character {
@@ -563,4 +563,4 @@ To recap what we've learned about schemas and types:
563563
- Type system directives can be applied to the types, fields, and arguments in a schema to alter how they are validated and executed during a query
564564
- GraphQL supports schema documentation using type, field, and argument descriptions, and it also supports comments that are ignored by the parser
565565

566-
Now that you understand the key features of the type system, you're ready to learn more about how to [query data from a GraphQL API](/learn/queries/).
566+
Now that you understand the key features of the type system, you're ready to learn more about how to [query data from a GraphQL API](/learn/queries/).

0 commit comments

Comments
 (0)