From 5d0d07122c328440bb7144de543c6badaf60276b Mon Sep 17 00:00:00 2001 From: Arda TANRIKULU Date: Thu, 12 Aug 2021 20:38:15 +0300 Subject: [PATCH] Fix the introduction on the website --- website/docs/introduction.mdx | 6 +++--- website/src/pages/index.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/introduction.mdx b/website/docs/introduction.mdx index f84a5144365..a8981890d4c 100644 --- a/website/docs/introduction.mdx +++ b/website/docs/introduction.mdx @@ -3,9 +3,9 @@ title: Introduction description: A set of utilities to build your JavaScript GraphQL schema in a concise and powerful way. --- -GraphQL Tools is an npm package and an opinionated structure for how to build a GraphQL schema and resolvers in JavaScript, following the GraphQL-first development workflow. +GraphQL Tools is a set of npm packages(`@graphql-tools/*`) and an opinionated structure for how to build a GraphQL schema and resolvers in JavaScript, following the GraphQL-first development workflow. -Functions in the `graphql-tools` packages are not just useful for building servers. They can also be used in the browser, for example to mock a backend during development or testing. +Functions in the `@graphql-tools/*` packages are not only useful for building servers. They can also be used in the browser, for example to mock a backend during development or testing. Even though we recommend a specific way of building GraphQL servers, you can use these tools even if you don't follow our structure; they work with any GraphQL-JS schema, and each tool can be useful on its own. @@ -13,7 +13,7 @@ Even though we recommend a specific way of building GraphQL servers, you can use If you want to bind your JavaScript GraphQL schema to an HTTP server, you can use [`express-graphql`](https://github.com/graphql/express-graphql). -You can develop your JavaScript based GraphQL API with `graphql-tools` and `express-graphql` together: One to write the schema and resolver code, and the other to connect it to a web server. +You can develop your JavaScript based GraphQL API with GraphQL Tools and `express-graphql` together: One to write the schema and resolver code, and the other to connect it to a web server. ## The GraphQL-first philosophy diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index 4d7ee43a4ae..80090e03105 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -22,7 +22,7 @@ export default function Index() { <>