From 1875cc72fd772854973ff8d9c29817376ee2a257 Mon Sep 17 00:00:00 2001 From: Bob Kuo Date: Thu, 9 May 2024 13:47:57 -0500 Subject: [PATCH] docs: Add more links from queries to schema --- src/pages/learn/queries.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/learn/queries.mdx b/src/pages/learn/queries.mdx index d3da6ebd03..8f2ff88b46 100644 --- a/src/pages/learn/queries.mdx +++ b/src/pages/learn/queries.mdx @@ -205,7 +205,7 @@ All declared variables must be either scalars, enums, or input object types. So Variable definitions can be optional or required. In the case above, since there isn't an `!` next to the `Episode` type, it's optional. But if the field you are passing the variable into requires a non-null argument, then the variable has to be required as well. -To learn more about the syntax for these variable definitions, it's useful to learn the GraphQL schema language. The schema language is explained in detail on the Schema page. +To learn more about the syntax for these variable definitions, it's useful to learn [the GraphQL schema language](/learn/schema). The schema language is explained in detail on [the Schemas and Types page](/learn/schema). ### Default variables