From abe56cf47ba90b2a6d3ac8db925b48f91abf5887 Mon Sep 17 00:00:00 2001 From: Hofer-Julian <30049909+Hofer-Julian@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:29:54 +0100 Subject: [PATCH 1/2] docs: Improve sentence in introduction.md --- book/src/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/introduction.md b/book/src/introduction.md index d4c55b565..c23e773c1 100644 --- a/book/src/introduction.md +++ b/book/src/introduction.md @@ -3,7 +3,7 @@ Introduction > [GraphQL] is a query language for APIs and a runtime for fulfilling those queries with your existing data. [GraphQL] provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools. -[Juniper] is a library for creating [GraphQL] servers in [Rust]. Build type-safe and fast API servers with minimal boilerplate and configuration (we do try to make declaring and resolving [GraphQL] schemas as convenient as possible as [Rust] will allow). +[Juniper] is a library for creating [GraphQL] servers in [Rust]. Build type-safe and fast API servers with minimal boilerplate and configuration (we do try to make declaring and resolving [GraphQL] schemas as convenient as [Rust] will allow). [Juniper] doesn't include a web server itself, instead, it provides building blocks to make integration with existing web servers straightforward. It optionally provides a pre-built integration for some widely used web server frameworks in [Rust] ecosystem. From 5e8efe211699fbfe277e257525ff2a607a5bb6ea Mon Sep 17 00:00:00 2001 From: tyranron Date: Thu, 4 Apr 2024 14:24:22 +0300 Subject: [PATCH 2/2] Fix also in README --- juniper/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/juniper/README.md b/juniper/README.md index f6473843b..cdcecf8c7 100644 --- a/juniper/README.md +++ b/juniper/README.md @@ -12,7 +12,7 @@ Juniper (GraphQL server library for Rust) [GraphQL] is a data query language developed by [Facebook] and intended to serve mobile and web application frontends. -*[Juniper]* makes it possible to write [GraphQL] servers in [Rust] that are type-safe and blazingly fast. We also try to make declaring and resolving [GraphQL] schemas as convenient as possible as [Rust] will allow. +*[Juniper]* makes it possible to write [GraphQL] servers in [Rust] that are type-safe and blazingly fast. We also try to make declaring and resolving [GraphQL] schemas as convenient as [Rust] will allow. [Juniper] doesn't include a web server - instead it provides building blocks to make integration with existing servers straightforward, including embedded [GraphiQL] and/or [GraphQL Playground] for easy debugging.