From 892b6c45c84dbd2578f1105aa5b6f77d8365cb38 Mon Sep 17 00:00:00 2001 From: langarus <45520746+langarus@users.noreply.github.com> Date: Mon, 22 Apr 2024 17:54:20 +0300 Subject: [PATCH] chore: update static-typing.md to add "graphql" as install dependency (#11786) The graphql package seems to be required by the generated files Co-authored-by: Lenz Weber-Tronic --- docs/source/development-testing/static-typing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/development-testing/static-typing.md b/docs/source/development-testing/static-typing.md index 3d11003c0c3..96a5148550c 100644 --- a/docs/source/development-testing/static-typing.md +++ b/docs/source/development-testing/static-typing.md @@ -16,7 +16,7 @@ Below, we'll guide you through installing and configuring GraphQL Code Generator To get started using GraphQL Code Generator, begin by installing the following packages (using Yarn or NPM): ```bash -yarn add -D typescript @graphql-codegen/cli @graphql-codegen/client-preset @graphql-typed-document-node/core +yarn add -D typescript graphql @graphql-codegen/cli @graphql-codegen/client-preset @graphql-typed-document-node/core ``` Next, we'll create a configuration file for GraphQL Code Generator, named [`codegen.ts`](https://www.the-guild.dev/graphql/codegen/docs/config-reference/codegen-config), at the root of our project: