Skip to content

Commit

Permalink
Fix the introduction on the website
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Aug 12, 2021
1 parent de38619 commit 5d0d071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions website/docs/introduction.mdx
Expand Up @@ -3,17 +3,17 @@ 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.

## Using GraphQL with HTTP

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

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/index.tsx
Expand Up @@ -22,7 +22,7 @@ export default function Index() {
<>
<HeroGradient
title="A set of utilities for faster development of GraphQL Schemas"
description="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."
description="GraphQL Tools is a set of NPM packages and an opinionated structure for how to build a GraphQL schema and resolvers in JavaScript, following the GraphQL-first development workflow."
link={{
children: 'Get Started',
title: 'Learn more about GraphQL Tools',
Expand Down

0 comments on commit 5d0d071

Please sign in to comment.