From 4d4ceced9d2f882f7431830134d293c187aff4f3 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Mon, 25 Mar 2024 09:20:08 -0700 Subject: [PATCH] docs: fix Apollo Server package name in npm command This makes it match the code samples below by using the AS4 package name. --- www/docs/main/frameworks/apollo-server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/docs/main/frameworks/apollo-server.mdx b/www/docs/main/frameworks/apollo-server.mdx index f05a4ef9..0c89f252 100644 --- a/www/docs/main/frameworks/apollo-server.mdx +++ b/www/docs/main/frameworks/apollo-server.mdx @@ -12,7 +12,7 @@ In the following section, you will see how to integrate any cloud with your Apol First, you need to ensure you have the libs installed, so run this code: ```bash -npm i --save apollo-server +npm i --save @apollo/server ``` Also, to be able to handle JSON requests, we can use [JsonBodyParserFramework](./helpers/body-parser), so let's install it: