From f601a6a724209570c238719a3be83cf1ae9dea16 Mon Sep 17 00:00:00 2001 From: Timur Date: Wed, 13 Nov 2024 13:54:13 +0200 Subject: [PATCH] fix: learn/schema typo --- src/pages/learn/schema.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/learn/schema.mdx b/src/pages/learn/schema.mdx index b10ff9ad3..c47a6bf9d 100644 --- a/src/pages/learn/schema.mdx +++ b/src/pages/learn/schema.mdx @@ -261,7 +261,7 @@ You can arbitrarily nest any number of Non-Null and List modifiers, according to 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. -For example, you could have an `Character` Interface type that represents any character in the Star Wars trilogy: +For example, you could have a `Character` Interface type that represents any character in the Star Wars trilogy: ```graphql interface Character { @@ -563,4 +563,4 @@ To recap what we've learned about schemas and types: - 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 - GraphQL supports schema documentation using type, field, and argument descriptions, and it also supports comments that are ignored by the parser -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/). \ No newline at end of file +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/).