From 4e8e3dc64cef941309de93380ea2996b903e923d Mon Sep 17 00:00:00 2001 From: Heather Date: Tue, 9 Jul 2024 15:48:05 -0400 Subject: [PATCH] fix: typo on client code generation page --- .../build-a-backend/graphqlapi/client-code-generation/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/gen1/[platform]/build-a-backend/graphqlapi/client-code-generation/index.mdx b/src/pages/gen1/[platform]/build-a-backend/graphqlapi/client-code-generation/index.mdx index e3e2b176bac..9a70f7cbb99 100644 --- a/src/pages/gen1/[platform]/build-a-backend/graphqlapi/client-code-generation/index.mdx +++ b/src/pages/gen1/[platform]/build-a-backend/graphqlapi/client-code-generation/index.mdx @@ -90,7 +90,7 @@ Each time you will be prompted to update the code in your API and also ask you i ### No API changes, just update GraphQL statements & generate code -One of the benefits of GraphQL is the client can define it's data fetching requirements independently of the API. Amplify codegen supports this by allowing you to modify the selection set (e.g. add/remove fields inside the curly braces) for the GraphQL statements and running type generation again. This gives you fine-grained control over the network requests that your application is making. Modify your GraphQL statements (default in the `./graphql` folder unless you changed it) then save the files and run: +One of the benefits of GraphQL is the client can define its data fetching requirements independently of the API. Amplify codegen supports this by allowing you to modify the selection set (e.g. add/remove fields inside the curly braces) for the GraphQL statements and running type generation again. This gives you fine-grained control over the network requests that your application is making. Modify your GraphQL statements (default in the `./graphql` folder unless you changed it) then save the files and run: ```bash amplify codegen types