From 7eb31e6fb004c5a97e4b6a8183d572f43f6eed33 Mon Sep 17 00:00:00 2001 From: josef Date: Thu, 16 Mar 2023 13:53:06 -0500 Subject: [PATCH] chore: add graphql language to fenced code block for syntax highlighting --- src/pages/cli/migration/lazy-load-custom-selection-set.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/cli/migration/lazy-load-custom-selection-set.mdx b/src/pages/cli/migration/lazy-load-custom-selection-set.mdx index bb7956fd399..1429859de25 100644 --- a/src/pages/cli/migration/lazy-load-custom-selection-set.mdx +++ b/src/pages/cli/migration/lazy-load-custom-selection-set.mdx @@ -17,7 +17,7 @@ With the latest Amplify library for Swift, developers now have better query cont Developers using **API (GraphQL)** can control the data returned from their GraphQL service. The request for a particular model can include or exclude connected models. Let’s take a look at the schema with Post and Comment models in the following examples. A comment belongs to a post and a post has many comments. -``` +```graphql enum PostStatus { ACTIVE INACTIVE